html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color:#000;
}

sub, sup {
    /* Specified in % so that the sup/sup is the
       right size relative to the surrounding text */
    font-size: 75%;

    /* Zero out the line-height so that it doesn't
       interfere with the positioning that follows */
    line-height: 0;

    /* Where the magic happens: makes all browsers position
       the sup/sup properly, relative to the surrounding text */
    position: relative;

    /* Note that if you're using Eric Meyer's reset.css, this
       is already set and you can remove this rule */
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    width: 100%;
}
ol, ul {
    list-style: none;
    padding-left: 0;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    /* PALETTE */
    --primary: #000;
    --csecondary: #555;
    --ctertiary: #808080;
    --disabled: #B3B3B3;

    --soft-black: #1A1B1F;

    --border-default: #E6E6E6;
    --border-light: #F0F0F0;

    --background-primary: #FFFFFF;
    --background-secondary: #F6F6F6;
    --background-tertiary: #F0F0F0;

    --success-default: #00875A;
    --success-default2: #0E7A48;
    --success-soft: #E3FCEF;
    --success-soft2: #ECFDF3;

    --danger-default: #DE350B;
    --danger-soft: #FFEBE6;

    --radius-card: 32px;
}

/*//////////// FONTS ////////////*/
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/InterVariable.woff2') format('woff2-variations');
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/GeistVariable.woff2') format('woff2-variations');
    font-weight: 600 700;
    font-display: swap;
}

@font-face {
    font-family: 'Redaction';
    src: url('assets/fonts/Redaction-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Redaction';
    src: url('assets/fonts/Redaction-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*//////////// GENERAL ////////////*/
.flex {display: flex;}
.flex-col {flex-direction: column;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
.justify-center {justify-content: center;}
.items-center {align-items: center;}
.items-end {align-items: flex-end;}
.items-baseline {align-items: baseline;}
.gap-2 {gap: 2px;}
.gap-4 {gap: 4px;}
.gap-6 {gap: 6px;}
.gap-8 {gap: 8px;}
.gap-10 {gap: 10px;}
.gap-12 {gap: 12px;}
.gap-16 {gap: 16px;}
.gap-20 {gap: 20px;}
.gap-24 {gap: 24px;}
.gap-32 {gap: 32px;}
.gap-48 {gap: 48px;}
.gap-60 {gap: 60px;}
.gap-72 {gap: 72px;}
.gap-80 {gap: 80px;}

/* Bootstrap */

.dropdown-menu {
    padding: 4px !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 4px 6px -1px, rgba(0, 0, 0, 0.05) 0px 2px 4px -2px !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer !important;
    padding: 6px 8px !important;
    border-radius: 6px !important;
    min-height: 32px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    user-select: none;
}

.dropdown-item:hover {
    background-color: var(--background-secondary);
}

.dropdown-item-lang svg,
.dropdown-item-currency svg {
    border-radius: 2px;
    height: 14px;
}

/* STORE BTN */
.storeBtn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    height: 52px;
    padding: 10px;
    cursor: pointer;
    outline: none !important;
    user-select: none;
    display: flex;
    align-items: center;
    width: 120px;
    height: 40px;
    border: 1px solid var(--csecondary);
    border-radius: 10px;
    -webkit-transition: color .1s, background-color .1s;
    transition: color .1s, background-color .1s;
}

.storeBtn:hover {
    background-color: #262626;
}

/*//////////// BUTTONS ////////////*/

.nudeBtn {
    outline: none !important;
    user-select: none;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
}

.uibtn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    min-height: 40px;
    padding: 4px 13px;
    cursor: pointer;
    outline: none !important;
    font-family: -apple-system, "system-ui", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    font-weight: 400;
    font-size: 14px;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 7px;
    -webkit-transition: color .1s, background-color .1s;
    transition: color .1s, background-color .1s;
}

.uibtn svg {
    width: 16px;
}

.uibtn:hover {
    background-color: #262626;
}

.uibtn.secondary {
    background-color: var(--background-tertiary);
    color: var(--csecondary);
}

.uibtn.success {
    background-color: var(--success-soft) !important;
    color: var(--success-default) !important;
}

.uibtn.success:hover {
    background-color: #d6f6e6 !important;
}

.uibtn.fullWidth {
    width: 100%;
    justify-content: center;
}

.uibtn.secondary:hover {
    background-color: #E2E2E2;
}

.uibtn.tert {
    background-color: transparent;
    color: #000;
    border: 1px solid var(--border-default);
    border-radius: 8px;
    min-height: 40px;
    padding: 4px 13px;
    cursor: pointer;
    outline: none;
    font-family: -apple-system, "system-ui", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    font-weight: 400;
    font-size: 14px;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 7px;
    -webkit-transition: color .1s, background-color .1s;
    transition: color .1s, background-color .1s;
}

.uibtn.tert:hover {
    background-color: #EFEFEF;
}

.uibtn.anim svg {
    transition: transform 0.3s ease;
}

.uibtn.anim:hover svg {
    transform: translateX(2px);
}

.uibtn.thin {
    border-radius: 8px;
    min-height: 32px;
    padding: 4px 8px;
}

.sec-color {
    color: var(--csecondary);
}

/******* WEBSITE *****/
body {
    font-family: 'Inter';
    font-size: 16px;
}

.c-nav_row {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.header_mainNav {
    background-color: #f7f7f7;
    height: 42px;
    width: 100%;
}

.header_mainNav .header_nav .uibtn {
    background-color: transparent !important;
}

.header_mainNav .uibtn {
    height: 28px;
    min-height: inherit;
}

.header_mainNav .uibtn.active {
    color: #000;
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.header_mainNav .uibtn:hover {
    color: #000;
}

.header_mainNav .flagIcon svg {
    border-radius: 4px;
    height: 14px;
}

.nav_wrapper {
    width: 100%;
    max-width: 1512px;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
}

.header_page {
    width: 100%;
    padding: 22px 0;
}

.header_page .header_page_nav {
    gap: 48px;
    font-size: 14px;
}

.header_page .nav_links {
    gap: 26px;
}

.header_page .logo_image {
    width: 115px;
}

.header_page .nav_actions #toggleMainHeaderMenu {
    display: none;
}

.mobileMenuContainer {
    display: none;
}

.hero_section {
    padding: 60px 0;
}

.hero_section h1 {
    font-family: 'Geist', sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
}

h1 .script,
h2 .script,
h3 .script,
.partners_section .baselineLabel span.script {
    font-family: 'Redaction', serif;
}

.hero_section .hero_main_wrapper:not(.withTestimonial) {
    justify-content: center;
}

.hero_section .hero_main_wrapper.withTestimonial {
    gap: 100px;
    padding: 0 90px;
}

.hero_section .hero_main_wrapper.withTestimonial .hero_main_desc .grid_bg {
    width: 320px;
    left: -120px;
    top: -100px;
}

.hero_section .hero_main_wrapper.withTestimonial h1,
.hero_section .hero_main_wrapper.withTestimonial .hero_main_desc .subtitleLabel {
    text-align: start;
}

.hero_section .hero_main_wrapper.withTestimonial .hero_main_desc {
    align-items: flex-start;
    width: 70%;
}

.hero_section .hero_main_wrapper .testimonialWrapper {
    max-width: 240px;
    position: relative;
}

.hero_section .hero_main_wrapper .testimonialWrapper .grid_bg{
    position: absolute;
    z-index: -1;
    bottom: -100px;
    width: 360px;
    right: -140px;
}

.hero_section .hero_main_wrapper .testimonialWrapper .illustration_wrapper {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    width: 15rem;
    height: 19.5rem;
    overflow: hidden;
    box-shadow: 0 6px 18px #3f3f3f1f;
}

.hero_section .hero_main_wrapper .testimonialWrapper .quoteLabel,
.hero_section .hero_main_wrapper .testimonialWrapper .nameLabel {
    color: var(--soft-black);
    font-size: 16px;
    line-height: 24px;
}

.hero_section .hero_main_wrapper .testimonialWrapper .nameLabel {
    font-weight: 600;
    text-transform: uppercase;
}

.hero_section .hero_main_wrapper .testimonialWrapper .positionLabel {
    color: var(--csecondary);
    font-size: 13px;
}

.hero_section .hero_main_desc {
    gap: 48px;
    position: relative;
}

.hero_section .hero_main_desc .grid_bg {
    position: absolute;
    z-index: -1;
    top: -70px;
}

.hero_section .hero_main_desc .subtitleLabel {
    color: var(--csecondary);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.hero_section .hero_ascend_picture {
    width: 50%;
    aspect-ratio: 600/650;
    background-color: #000;
    background-image: url('assets/laura_horvath.avif');
    background-size: cover;
    border-radius: 40px;
}

.hero_section_ascend .hero_main_desc {
    flex-grow: 1;
}

.hero_section.hero_section_ascend h1,
.hero_section.hero_section_ascend .hero_main_desc .subtitleLabel {
    text-align: start;
}

.combo_cta_info .info_labels {
    font-size: 14px;
    color: var(--csecondary);
}

.combo_cta_info .info_labels svg {
    color: #000;
    width: 16px;
}

.hero_section .hero_main_illustration {
    /*height: 570px;*/
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F3E9DF 100%);*/
    /*background-image: url('assets/hero_banner.avif');*/
    background-size: cover;
}

.hero_section .hero_main_illustration img {
    width: 100%;
    border-radius: 32px;
}

.feature_section h3 {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    line-height: 54px;
    font-weight: 700;
}

.feature_section .subtitleLabel {
    font-size: 16px;
    color: var(--csecondary);
}

.feature_section {
    padding: 120px 0;
}

.partners_section .baselineLabel {
    text-align: center;
}

.partners_section .baselineLabel span {
    color: #000;
}

.partners_section .partners_section_logos {
    flex-wrap: wrap;
}

.feature_content_services {
    margin-top: 40px;
    align-items: stretch;
}

.feature_content_services .card_info_illustration {
    background-color: #000;
    border-radius: 20px;
    padding: 265px 8px 8px 8px;
    flex: 1;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature_content_services .card_info_illustration .illustrationImage {
    position: absolute;
    height: 100%;
    min-width: 100%;
    object-fit: cover;  /* keeps aspect ratio, crops excess */
    object-position: center; /* always center horizontally */
    top: -50px;
    left:50%;
    transform: translateX(-50%);
    z-index: -2;
}

.feature_content_services .card_info_illustration .illustrationImage.top150 {
    top: -150px;
}

.feature_content_services .card_info_illustration .gradientOverlay {
    position: absolute;
    width: 100%;
    height: 70%;
    bottom:0;
    left:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: -1;
}

.feature_content_services .card_info_illustration .card_container {
    background-color: #fff;
    border-radius: 14px;
    padding: 26px;
}

.feature_content_services .card_info_illustration .card_container h5 {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.three_features_section .top_wrapper {
    position: relative;
}

.three_features_section .grid_bg {
    position: absolute;
    left: -120px;
    top: -120px;
    z-index: -1;
}

.three_features_section .feature_card {
    border-radius: 32px;
    border: 1px solid #F0F0F0;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(2px);
    overflow: hidden;
    width: 32%;
}

.noise {
    position: relative;
}

.noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.7;
}

.noise05::before {
    opacity: 0.5;
}

.three_features_section .feature_card .illustration_wrapper {
    z-index: 2;
}

.three_features_section .feature_card.illustrationCropped .illustration_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

.three_features_section .feature_card.illustrationCropped .illustration_wrapper img {
    width: 140px;
}

.three_features_section .feature_card .illustration_wrapper img {
    max-width: 100%;
}

.three_features_section .feature_card .content_wrapper {
    padding: 32px;
}

.three_features_section .feature_card h5 {
    font-size: 22px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
}

.three_features_section .feature_card p {
    font-size: 18px;
    color: var(--csecondary);
    line-height: 24px;
}

.three_features_section .listItems {
    margin-top: 8px;
}

.three_features_section .listItems .item {
    z-index: 2;
    align-items: flex-start;
}

.three_features_section .listItems .item:not(:last-child) {
    border-bottom: 1px solid var(--border-default);
    padding-bottom: 8px;
}

.three_features_section .listItems .item img {
    width: 20px;
    padding-top: 2px;
}

.three_features_section .listItems .item .itemContent {
    /*padding-top: 2px;*/
    color: var(--soft-black);
    line-height: 24px;
}

.feature_section .media_library_card_wrapper {
    background-color: #000;
    border-radius: var(--radius-card);
    color: #fff;
    height: 720px;
    width: 100%;
    padding-top: 80px;
    padding-left: 80px;
    position: relative;
    overflow: hidden;
}

.feature_section .media_library_card_wrapper h3 {
    font-size: 48px;
}

.feature_section .media_library_card_wrapper .textContainer {
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.feature_section .media_library_card_wrapper .textContainer .subtitleLabel {
    font-size: 18px;
    color: var(--disabled);
}

.feature_section .media_library_card_wrapper .media_list_wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    inset: 0%;
}

.feature_section .media_library_card_wrapper .media_list_wrapper .line_wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.feature_section .media_library_card_wrapper .line_wrapper img {
    width: 300px;
    border-radius: 16px;
}

.feature_section .media_library_card_wrapper .line_wrapper:nth-child(4) {
    position: relative;
    left: 18vw;
}
.feature_section .media_library_card_wrapper .line_wrapper:nth-child(6) {
    position: relative;
    left: 100px;
}

.feature_section .media_library_card_wrapper .gradientTop {
    background-image: linear-gradient(180deg, black, transparent);
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.feature_section .media_library_card_wrapper .gradientBottom {
    background-image: linear-gradient(0deg, black, transparent);
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.full_card_container {
    width: 100%;
    min-height: 500px;
    border-radius: 40px;
    border: 1px solid var(--border-default);
    padding: 16px;
    background: #FFF;
    overflow: hidden;
}

.full_card_container.dark {
    background: linear-gradient(309deg, #252525 68.52%, #666 98.6%);
}

.full_card_container.contentFirst {
    flex-direction: row-reverse;
}

.full_card_container .illustration_wrapper {
    border-radius: 32px;
    /*background-image: url('assets/emma_tracking.avif');*/
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    width: 40%;
    min-height: 540px;
}

.full_card_container.dark .illustration_wrapper,
.full_card_container.dark .content_wrapper{
    z-index: 2;
    color: #fff;
}

.full_card_container .content_wrapper {
    width: 60%;
    padding: 56px;
}

.full_card_container .content_wrapper h2 {
    font-size: 48px;
    line-height: 56px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
}

.full_card_container.dark .content_wrapper h2 {
    color: #fff;
}

.full_card_container .content_wrapper p {
    color: var(--csecondary);
    line-height: 26px;
}

.full_card_container.dark .content_wrapper p {
    color: var(--disabled);
}

.section_testimonial {
    padding: 60px 0;
}

.section_testimonial h3 {
    text-align: center;
}

.section_testimonial .tileElement {
    height: 420px;
    flex-grow: 1;
    background-color: black;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #fff;
    user-select: none;
    transition: flex-grow 0.5s ease, opacity 0.3s ease;
}

.section_testimonial .tileElement .tiles_content_text {
    min-width: 100vw;
}

.section_testimonial .tileElement:not(.active) .tiles_content_text {
    display: none !important;
}

.section_testimonial .tileElement:not(.active) .tiles_content {
    align-items: center;
}

.section_testimonial .tileElement.active {
    flex-grow: 4;
    cursor: default;
}

.section_testimonial .tileElement .gradientOverlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.5) 100%);
    height: 70%;
    width: 100%;
    bottom: 0;
    position: absolute;
}

.section_testimonial .tileElement .tiles_content {
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 40px;
    justify-content: space-between;
    color: #fff;
}

.section_testimonial .tileElement .titleLabel {
    font-weight: 600;
    font-size: 28px;
}

.section_testimonial .tileElement .nameLabel {
    font-size: 18px;
}

.section_testimonial .tileElement .positionLabel {
    font-size: 16px;
    opacity: 0.7;
}

.section_testimonial .tileElement .logoAsset {
    max-width: 120px;
    transition: 0.8s;
}

.mockup_4_points_container {
    background-color: #000;
    color: #fff;
    padding-top: 120px;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

.mockup_4_points_container .content_wrapper {
    width: 70%;
    padding-bottom: 120px;
}

.mockup_4_points_container .items_wrapper {
    flex-wrap: wrap;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.mockup_4_points_container .item_wrapper {
    width: calc(50% - 16px);
}

.mockup_4_points_container .items_wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.mockup_4_points_container .items_wrapper p {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
}

.mockup_4_points_container .mockup_wrapper img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    position: relative;
    margin-top: -80px;
}

.mockup_4_points_container .grid_bg {
    position: absolute;
    z-index: -1;
    top: 60px;
    left: 20px;
    opacity: 0.5;
}

.grid_features_testimonial {
    position: relative;
}

.grid_features_testimonial .feature_title .grid_bg {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 400px;
    /*top: -70px;*/
}

.grid_features_testimonial .features_wrapper {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid_features_testimonial .features_wrapper .layout_cell {
    border-radius: 32px;
    border: 1px solid #F0F0F0;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(2px);
    overflow: hidden;
    justify-content: space-between;
    min-height: 200px; /* To remove */
}

.grid_features_testimonial .features_wrapper .layout_cell .contentWrapper {
    padding: 32px 32px 0 32px;
}

.grid_features_testimonial .features_wrapper .layout_cell img {
    z-index: 2;
    max-width: 80%;
}

.grid_features_testimonial .features_wrapper .layout_cell h5 {
    font-size: 26px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
}

.grid_features_testimonial .features_wrapper .layout_cell p {
    color: var(--csecondary);
    line-height: 20px;
}

.grid_features_testimonial .features_wrapper .layout_testimonial {
    border-radius: 32px;
    background-color: #000;
    grid-column: span 2 / span 2;
    color: #fff;
    padding: 48px;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.grid_features_testimonial .features_wrapper .layout_testimonial .quoteLabel {
    font-family: 'Redaction', serif;
    font-size: 36px;
    font-weight: 700;
    max-width: 60%;
    line-height: 46px;
}

.grid_features_testimonial .features_wrapper .layout_testimonial .avatarContainer {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-position: center center;
    background-size: cover;
    background-color: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.grid_features_testimonial .features_wrapper .layout_testimonial .titleLabel {
    color: var(--disabled);
    font-size: 14px;
}

.faq_section .leftWrapper {
    width: 50%;
    align-items: flex-start;
    max-width: 600px;
}

.faq_section .rightWrapper {
    width: 50%;
    align-items: flex-start;
}

.faq_section .descriptionLabel {
    font-size: 15px;
    color: var(--csecondary);
}

.faq_section .faq_item_wrapper {
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 24px 0;
    display: flex;
    user-select: none;
    overflow: hidden;
}

.faq_section .faq_item_triger {
    font-size: 16px;
}

.faq_section .faq_item_triger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq_section .faq_item_description {
    color: var(--csecondary);
    font-size: 15px;
    padding-left: 22px;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease, height 0.3s ease, padding-top 0.3s ease;
    line-height: 20px;
}

.faq_section .faq_item_description ul {
    list-style-type: disc;
    margin-left: 16px;
    margin-top: 4px;
}

.faq_section .faq_item_wrapper.active .faq_item_description {
    opacity: 1;
    height: inherit;
    padding-top: 16px;
}

.faq_section .faq_item_wrapper.active .faq_item_triger svg {
    transform: rotate(180deg);
}

.cta_section {
    background-image: linear-gradient(180deg, transparent, transparent 85%, #000 85%, #000);
}

.cta_section .cta_content {
    width: 50%;
}

.cta_section .cta_card {
    border: 1px solid #EDECEC;
    border-radius: 26px;
    background-color: white;
    box-shadow: 0 6px 16px 0 rgba(63, 63, 63, 0.04);
    width: 100%;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta_section .cta_card .cta_image {
    max-width: 50%;
    max-height: 102%;
    position: absolute;
    inset: auto 0% 0% auto;
}

.cta_section .cta_card .cta_main_label {
    font-size: 48px;
    line-height: 54px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
}

.cta_section .cta_card .cta_description {
    font-size: 18px;
    line-height: 28px;
    color: var(--csecondary);
}

#footer_main {
    background-color: #000;
    color: white;
    padding: 60px;
    background-image: url('assets/strivee_text.svg');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    padding-bottom: 250px;
}

#footer_main a {
    color: #e3e3e3;
}

#footer_main .footer_wrap {
    gap: 120px;
}

#footer_main .mission_label {
    color: #e3e3e3;
    font-size: 15px;
    line-height: 22px;
}

#footer_main .copyrightLabel {
    font-size: 13px;
    color: var(--ctertiary);
}

#footer_main .social_icons button {
    background-color: transparent;
    outline: none;
    user-select: none;
    border: 1px solid #4B4B4B;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.2s;
    padding: 0;
}

#footer_main .social_icons button:hover {
    border-color: var(--ctertiary);
    background-color: rgba(255, 255, 255, 0.1);
}

#footer_main .footer_col {
    width: 16%;
}

#footer_main .footer_col_first {
    width: 30%;
}

#footer_main .footer_col .footer_col_head {
    font-size: 16px;
    font-weight: 600;
}

#footer_main .footer_col a {
    font-size: 15px;
}

.wb_gradient_bg {
    background: linear-gradient(27deg, #F7F1E8 5.12%, #FFF 70.33%);
}

#pricingTableCurrencyPicker .flagIconWrapper svg {
    border-radius: 2px;
}

.pricing_section .feature_title {
    position: relative;
    z-index: 1;
}

.pricing_section .feature_title .grid_bg {
    position: absolute;
    z-index: -1;
    top: -70px;
}

.pricing_section .pricing_container_wrapper {
    align-items: flex-end;
}

.pricing_section .pricing_card_wrapper {
    border: 1px solid var(--border-default);
    border-radius: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    min-width: 33%;
    z-index: 1;
}

.pricing_section .pricing_container_wrapper.items_2 .pricing_card_wrapper {
    width: 40%;
}

.pricing_section .pricing_card_wrapper .infoContainer {
    background-color: #fff;
    padding: 24px;
    gap: 32px;
    border-radius: 24px;
}

.pricing_section .pricing_card_wrapper .pricing_plan {
    font-size: 20px;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
}

.pricing_section .pricing_card_wrapper .priceAmountLabel {
    font-size: 48px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
}

.pricing_section .pricing_card_wrapper .priceIntervalLabel {
    font-size: 15px;
    color: var(--csecondary);
}

.pricing_section .pricing_card_wrapper .detailList .item_element {
    font-size: 15px;
    color: var(--csecondary);
}

.pricing_section .pricing_card_wrapper .detailList .item_element.item_element_complex {
    color: #000;
}

.pricing_section .pricing_card_wrapper .detailList .item_element.item_element_complex svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing_section .pricing_card_wrapper .detailList .item_element svg {
    color: var(--ctertiary);
}

.pricing_section .pricing_card_wrapper .detailList .item_element.success .labelLine svg {
    color: var(--success-default);
}

.pricing_section .pricing_card_wrapper .detailList .item_element.warning .labelLine svg {
    color: #CA8935;
}

.pricing_section .pricing_card_wrapper .detailList .item_element.error .labelLine span {
    opacity: 0.6;
}

.pricing_section .pricing_card_wrapper .detailList .item_element.error .labelLine svg {
    color: var(--danger-default);
}


.pricing_section .pricing_card_wrapper.highlighted .headerTag {
    color: white;
    text-align: center;
    min-height: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 15px;
}

.pricing_section .pricing_card_wrapper.highlighted {
    background-color: var(--soft-black);
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 6px 12px 0 rgba(63, 63, 63, 0.04), 0 6px 18px 0 rgba(63, 63, 63, 0.12);
}


.tooltip-btn {
    position: relative;
}

.tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-btn:hover .tooltip-text {
    opacity: 1;
}

/* Thème custom */
.tippy-box[data-theme~='strivee']{
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    border-radius: 10px;
    padding: 0;            /* on gère le padding dans .tippy-content */
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Contenu */
.tippy-box[data-theme~='strivee'] .tippy-content{
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.25;
}

/* Au cas où tu veux forcer la disparition de la flèche même si option oubliée */
.tippy-box[data-theme~='strivee'] .tippy-arrow{
    display: none !important;
}

.tippy-box[data-theme~='strivee']{
    width: max-content;     /* ✅ épouse le contenu */
    max-width: 260px;       /* ✅ limite */
}

/* Autorise le retour à la ligne si on dépasse max-width */
.tippy-box[data-theme~='strivee'] .tippy-content{
    white-space: normal;
}

.tippy-box[data-theme~='strivee']{
    width: max-content !important;
    max-width: 260px !important;
}


@media screen and (min-width: 1440px) {
    .nav_wrapper_limited {
        padding-left: 116px;
        padding-right: 116px;
    }

    .cta_section .cta_card .cta_image {
        max-width: 40%;
    }
}

.nav_wrapper_limited {
    padding-left: 5vw;
    padding-right: 5vw;
}

@media screen and (min-width: 1220px) {

    .feature_section .media_library_card_wrapper .line_wrapper img {
        width: 340px;
    }

    .feature_section .media_library_card_wrapper {
        padding-top: 120px;
        padding-left: 120px;
    }
    .feature_section .media_library_card_wrapper h3 {
        font-size: 64px;
    }

    .mockup_4_points_container .mockup_wrapper img {
        margin-top: -60px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --radius-card: 26px;
    }

    .nav_wrapper_limited {
        padding-left: 30px;
        padding-right: 30px;
    }

    .feature_section h3,
    .full_card_container .content_wrapper h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero_section h1 {
        font-size: 48px;
    }

    .hero_section .hero_ascend_picture {
        border-radius: 32px;
        aspect-ratio: 600/850;
        width: 40%;
    }

    .hero_section .hero_separated_wrapper {
        gap: 16px;
    }

    .hero_section .hero_main_wrapper.withTestimonial {
        padding: 0;
        gap: 60px;
    }

    .partners_section .partners_section_logos {
        grid-column-gap: 1rem;
        grid-row-gap: 0;
    }

    .feature_content_services {
        gap: 12px;
    }

    .feature_content_services .card_info_illustration {
        padding: 200px 4px 4px 4px;
        border-radius: 16px;
    }

    .feature_content_services .card_info_illustration .card_container {
        padding: 16px;
        border-radius: 12px;
    }

    .three_features_section .feature_card {
        border-radius: 26px;
        gap: 0;
    }

    .three_features_section .feature_card.illustrationCropped .illustration_wrapper {
        padding-top: 20px;
    }

    .three_features_section .feature_card .content_wrapper {
        padding: 20px;
    }

    .three_features_section .feature_card h5 {
        font-size: 18px;
        line-height: 26px;
    }

    .three_features_section .feature_card p {
        font-size: 15px;
        line-height: 20px;
    }

    .three_features_section .features_wrapper {
        gap: 20px;
    }


    .section_testimonial .tiles_container {
        flex-direction: column;
    }

    .mockup_4_points_container .mockup_wrapper {
        margin-right: -40px;
    }

    .mockup_4_points_container .grid_bg {
        top: 30px;
        left: 0;
    }

    .section_testimonial .tileElement {
        width: 100%;
        height: 320px;
    }

    .section_testimonial .tileElement:not(.active) .tiles_content_text {
        display: flex !important;
    }

    .section_testimonial .tileElement:not(.active) .tiles_content {
        align-items: inherit;
    }

    .section_testimonial .tileElement .tiles_content_text {
        min-width: inherit;
    }

    .section_testimonial .tileElement .gradientOverlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.9) 100%);
    }

    .feature_section .media_library_card_wrapper {
        height: 540px;
    }
    .feature_section .media_library_card_wrapper h3 {
        font-size: 48px;
        line-height: 54px;
    }

    .feature_section .media_library_card_wrapper .textContainer {
        gap: 16px;
    }

    .feature_section .media_library_card_wrapper .line_wrapper img {
        width: 260px;
    }

    .feature_section .media_library_card_wrapper .line_wrapper:nth-child(3),
    .feature_section .media_library_card_wrapper .line_wrapper:nth-child(4) {
        opacity: 0;
    }

    .feature_section .media_library_card_wrapper {
        padding: 60px;
    }

    .feature_section .media_library_card_wrapper .textContainer {
        max-width: 100%;
    }

    .cta_section .cta_card {
        padding: 30px 0 0 30px;
    }

    .cta_section .cta_content {
        width: 50%;
        flex-shrink: 0;
        padding-bottom: 30px;
        gap: 32px;
    }

    .cta_section .cta_card .cta_main_label {
        font-size: 32px;
        line-height: inherit;
    }

    .cta_section .cta_card .cta_description {
        font-size: 16px;
    }

    .cta_section .cta_card .imgWrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cta_section .cta_card .cta_image {
        max-width: 100%;
        position: relative;
    }

    footer#footer_main {
        background-size: contain;
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    footer#footer_main .footer_wrap {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        flex-flow: wrap;
        justify-content: space-between;
    }

    .pricing_container_wrapper{
        flex-wrap:wrap;
    }

    /* 2 colonnes */
    .pricing_card_wrapper{
        flex: 1 1 calc(50% - 12px);
        max-width: none;
    }

    /* la carte mise en avant en haut sur toute la largeur */
    .pricing_card_wrapper.highlighted{
        order:-1;
        flex-basis:100%;
    }

    .grid_features_testimonial .feature_title .grid_bg {
        width: 300px;
        top: -30px;
    }

}

@media screen and (max-width: 767px) {
    :root {
        --radius-card: 20px;
    }

    .nav_wrapper_limited {
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature_section {
        padding: 60px 0;
    }

    .header_mainNav {
        display: none;
    }

    .header_page {
        padding: 16px 0;
    }

    .header_page .nav_links {
        display: none;
    }

    .header_page .nav_actions #toggleMainHeaderMenu {
        display: flex;
    }

    .mobileMenuContainer.active {
        position: fixed;            /* fixed to viewport */
        top: 0;
        left: 0;
        min-width: 100vw;               /* full viewport width */
        min-height: 100vh;
        width: 100%;               /* full viewport width */
        height: 100%;              /* full viewport height */
        background-color: var(--background-secondary);
        padding: 8px;
        display: flex;
        flex-direction: column;     /* if you have menu links */
        justify-content: center;
        align-items: center;
        z-index: 9999;              /* make sure it’s on top */
        overflow: hidden;
    }

    .mobileMenuContainer .mainWrapper {
        background-color: #fff;
        padding: 20px;
        border-radius: 16px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--border-light);
    }

    .mobileMenuContainer .mainWrapper .navigationSectionLabel {
        color: var(--ctertiary);
        font-size: 12px;
        text-transform: uppercase;
    }

    .mobileMenuContainer .mainWrapper .navigationItem {
        line-height: 30px;
        color: var(--csecondary);
    }

    .mobileMenuContainer .mainWrapper .navigationItem.active {
        color: #000;
    }

    .hero_section h1 {
        font-size: 30px;
    }

    .hero_section .hero_main_desc .subtitleLabel {
        font-size: 16px;
        line-height: 24px;
    }

    .hero_section .hero_main_wrapper.withTestimonial h1, .hero_section .hero_main_wrapper.withTestimonial .hero_main_desc .subtitleLabel {
        text-align: center;
    }

    .hero_section .hero_main_wrapper.withTestimonial .hero_main_desc {
        align-items: center;
        width: 100%;
    }

    .hero_section .hero_main_wrapper .testimonialWrapper {
        max-width: inherit;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .hero_section .hero_main_wrapper.withTestimonial .testimonialWrapper .grid_bg {
        width: 260px;
        left: 30px;
        right: inherit;
    }

    .hero_section .hero_main_wrapper .testimonialWrapper .illustration_wrapper {
        width: 120px;
        height: 150px;
        flex-shrink: 0;
        border-radius: 16px;
    }

    .hero_section .hero_main_illustration {
        margin-top: 40px;
    }

    .hero_section .hero_main_wrapper.withTestimonial .hero_main_desc .grid_bg {
        width: inherit;
        left: inherit;
        top: -70px;
        width: 205px;
    }

    .hero_section .hero_ascend_picture {
        aspect-ratio: 600/900;
    }

    .hero_section.hero_section_ascend .combo_cta_info .info_labels {
        flex-direction: column;
        gap: 4px;
    }

    .hero_section .hero_main_wrapper.withTestimonial {
        flex-direction: column;
    }

    .feature_section .media_library_card_wrapper {
        padding: 32px;
        height: 400px;
    }

    .feature_section .media_library_card_wrapper .line_wrapper img {
        width: 200px;
    }

    .feature_section .media_library_card_wrapper h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .combo_cta_info {
        flex-direction: column;
    }

    .combo_cta_info .info_labels {
        flex-direction: row;
        gap: 12px;
    }

    .three_features_section .features_wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .three_features_section .feature_card.illustrationCropped .illustration_wrapper {
        padding-top: 0;
        padding-left: 16px;
        padding-right: 8px;
    }

    .three_features_section .feature_card {
        flex-direction: row;
        width: 100%;
        align-items: center;
        border-radius: 20px;
    }

    .full_card_container .content_wrapper {
        gap: 32px;
        padding: 20px;
    }

    .partners_section .partners_section_logos {
        grid-column-gap: 0.5rem;
    }

    .partners_section .partners_section_logos img {
        width: 60px;
    }

    .feature_content_services {
        flex-direction: column;
    }

    .feature_content_services .card_info_illustration {
        padding: 200px 0 0 0;
        border-radius: 16px;
        background-color: transparent;
        align-items: flex-start;
    }

    .feature_content_services .card_info_illustration .gradientOverlay {
        display: none;
    }

    .feature_content_services .card_info_illustration .card_container {
        padding: 16px 0;
        border-radius: 0;
        align-items: flex-start;
    }

    .feature_content_services .card_info_illustration .card_container .uibtn.fullWidth {
        width: inherit;
    }

    .feature_content_services .card_info_illustration .illustrationImage {
        border-radius: 16px;
        height: 250px;
    }

    .feature_content_services .card_info_illustration .illustrationImage.top150 {
        top: -50px;
    }

    .grid_features_testimonial .features_wrapper {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: wrap;
        justify-content: space-between;
        display: flex;
    }

    .grid_features_testimonial .features_wrapper .layout_cell {
        border-radius: 24px;
        width: 48%;
        padding: 0;
    }

    .grid_features_testimonial .features_wrapper .layout_cell .contentWrapper {
        padding: 26px 26px 0 26px;
    }

    .grid_features_testimonial .features_wrapper .layout_testimonial {
        width: 100%;
        padding: 36px;
        border-radius: 24px;
    }

    .grid_features_testimonial .features_wrapper .layout_cell h5 {
        font-size: 22px;
    }

    .mockup_4_points_container .main_wrapper {
        flex-direction: column;
        gap: 0;
    }

    .mockup_4_points_container .content_wrapper {
        width: 100%;
    }

    .mockup_4_points_container .mockup_wrapper {
        margin-right: 0;
        justify-content: center;
    }

    .mockup_4_points_container .mockup_wrapper img {
        max-width: 300px;
    }

    .mockup_4_points_container .grid_bg {
        width: 300px;
        top: 0;
        left: -40px;
    }

    .faq_section .faq_main_wrapper {
        flex-direction: column;
    }

    .faq_section .leftWrapper {
        max-width: inherit;
        width: 100%;
    }
    .faq_section .rightWrapper {
        width: 100%;
    }

    .pricing_section .pricing_container_wrapper.items_2 {
        flex-direction: column;
        align-items: center;
    }

    .pricing_section .pricing_container_wrapper.items_2 .pricing_card_wrapper {
        width: 100%;
    }

    .cta_section .cta_card {
        padding: 20px;
    }

    .cta_section .cta_card {
        flex-direction: column;
    }

    .cta_section .cta_content {
        width: 100%;
        flex-shrink: 0;
        padding-bottom: 0;
    }

    .cta_section .cta_card .imgWrapper img.cta_image_corner {
        display: none;
    }

    .cta_section .cta_card .uibtn {
        width: 100%;
        justify-content: center;
    }

    footer#footer_main .footer_col {
        width: auto;
    }

    footer#footer_main .footer_col_first {
        width: 100%;
    }

    .pricing_container_wrapper{
        flex-direction:column;
        flex-wrap:nowrap;
    }

    .pricing_card_wrapper{
        flex: 1 1 auto;
        width:100%;
    }

    .pricing_card_wrapper.highlighted{
        order:0; /* optionnel, tu peux garder order:-1 si tu la veux toujours en premier */
    }

}

@media screen and (max-width: 479px) {
/*@media screen and (max-width: 393px) {*/
    .combo_cta_info .info_labels {
        flex-direction: column;
        gap: 2px;
    }

    .hero_section_ascend .markAppStore {
        width: 120px;
    }

    .hero_section_ascend .hero_separated_wrapper {
        flex-direction: column;
    }

    .hero_section.hero_section_ascend h1, .hero_section.hero_section_ascend .hero_main_desc .subtitleLabel {
        text-align: center;
    }

    .hero_section.hero_section_ascend .combo_cta_info .info_labels {
        align-items: center;
    }

    .hero_section_ascend .hero_main_desc_first_wrapper {
        gap: 20px;
        align-items: center;
    }

    .hero_section .hero_ascend_picture {
        width: 100%;
        aspect-ratio: 600/400;
        border-radius: 20px;
    }

    .hero_section .hero_main_wrapper .testimonialWrapper {
        gap: 16px;
    }

    .hero_section .hero_main_wrapper .testimonialWrapper .illustration_wrapper {
        width: 80px;
        height: 100px;
    }

    .hero_section .hero_main_wrapper.withTestimonial .testimonialWrapper .grid_bg {
        width: 200px;
        left: -20px;
        top: -30px;
    }

    .partners_section .isStarReviewWrapper {
        flex-direction: column;
    }

    .feature_section .media_library_card_wrapper h3 {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
    }

    .feature_section .media_library_card_wrapper .textContainer {
        gap: 8px;
    }

    .feature_section .media_library_card_wrapper .subtitleLabel {
        font-size: 16px;
        text-align: center;
    }

    .feature_section .media_library_card_wrapper .line_wrapper img {
        width: 120px;
    }

    .three_features_section .feature_card {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }

    .three_features_section .feature_card.illustrationCropped .illustration_wrapper {
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .mockup_4_points_container .grid_bg {
        width: 260px;
        left: 0;
        top: 0;
    }

    .mockup_4_points_container .item_wrapper {
        width: 100%;
    }

    .three_features_section .top_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .full_card_container .content_wrapper h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .full_cards_feature_section .nav_wrapper {
        gap: 20px;
    }

    .full_card_container {
        flex-direction: column-reverse !important;
        border-radius: 32px;
        gap: 16px;
        padding: 12px;
    }

    .full_card_container .illustration_wrapper {
        border-radius: 26px;
        min-height: 200px;
    }

    .full_card_container .illustration_wrapper.containOnMobile {
        background-size: contain;
    }

    .full_card_container .illustration_wrapper,
    .full_card_container .content_wrapper {
        width: 100%;
    }

    .full_card_container .content_wrapper {
        padding: 8px;
        gap: 16px;
    }
    .full_card_container .content_wrapper svg {
        width: 30px;
        margin-bottom: -8px;
    }

    .section_testimonial .tileElement .tiles_content {
        padding: 24px;
    }

    .section_testimonial .tileElement .titleLabel {
        font-size: 22px;
    }

    .section_testimonial .tileElement .infoPersonLabels {
        flex-direction: column;
    }

    .section_testimonial .tileElement .nameLabel {
        font-size: 16px;
    }

    .section_testimonial .tileElement .positionLabel {
        font-size: 15px;
    }

    .partners_section .partners_section_logos {
        grid-column-gap: 0.25rem;
    }

    .partners_section .partners_section_logos img {
        width: 48px;
    }

    .grid_features_testimonial .features_wrapper {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .grid_features_testimonial .features_wrapper .layout_testimonial .quoteLabel {
        font-size: 26px;
        line-height: 32px;
    }

    .grid_features_testimonial .features_wrapper .layout_testimonial {
        border-radius: 16px;
    }

    .grid_features_testimonial .features_wrapper .layout_cell {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        border-radius: 16px;
        width: 100%;
        padding: 0;
    }

    .grid_features_testimonial .features_wrapper .layout_cell h5 {
        font-size: 18px;
    }
}