/* GLOBAL */
:root {
    --font-primary: #5D5D5D;
    --blue-100: #0A1729;
    --blue-70: #132C4E;
    --blue-50: #375276;
    --blue-30: #4D8DE5;
    --violet: #9A51C2;
    --green: #22AA82;
    --yellow: #FFD54A;
    --red: #F86762;
    --grey-70: #3B404A;
    --grey-60: #545C69;
    --grey-30: #85909D;
    --grey-20: #C6CCD2;
    --grey-10: #F7F8FC;
    --grey-0: #FFFFFF;
    --primary: var(--green);
    --sections-background: #F1F3F7;
}

.has-text-body-normal {
    font-size: 16px;
    line-height: 150%;
}

.has-text-body-small {
    font-size: 14px;
    line-height: 150%;
}

.has-h2 {
    font-size: 22px;
    line-height: 110%;
}

.has-h3 {
    font-size: 18px;
    line-height: 135%;
}

.has-text-primary {
    color: var(--primary) !important;
}

.has-text-blue-100 {
    color: var(--blue-100) !important;
}

.has-text-blue-70 {
    color: var(--blue-70) !important;
}

.has-text-blue-50 {
    color: var(--blue-50) !important;
}

.has-text-blue-30 {
    color: var(--blue-30) !important;
}

.has-text-grey-70 {
    color: var(--grey-70) !important;
}

.has-text-grey-60 {
    color: var(--grey-60) !important;
}

.has-text-grey-30 {
    color: var(--grey-30) !important;
}

.has-text-grey-20 {
    color: var(--grey-30) !important;
}

.has-text-grey-10 {
    color: var(--grey-10) !important;
}

.has-text-grey-0 {
    color: var(--grey-0) !important;
}

.has-text-yellow {
    color: var(--yellow) !important;
}

.has-text-red {
    color: var(--red) !important;
}

.has-text-violet {
    color: var(--violet) !important;
}

@media only screen and (max-width: 1300px) {
    .is-flex-direction-column-tablet {
        flex-direction: column !important;
    }
}

@media only screen and (max-width: 800px) {
    .is-flex-direction-column-mobile {
        flex-direction: column !important;
    }
}

.h-100 {
    height: 100% !important;
}

.h-fit-content {
    height: fit-content !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

@media only screen and (max-width: 800px) {
    .w-100-mobile,
    .w-100-mobile.w-fit-content,
    .w-100-mobile.w-50 {
        width: 100% !important;
    }
}

.w-50 {
    width: 50% !important;
}

.w-fit-content {
    width: fit-content !important;
}

.mw-0 {
    min-width: 0 !important;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.background-blue-100 {
    background-color: var(--blue-100) !important;
}

.background-blue-70 {
    background-color: var(--blue-70) !important;
}

.background-blue-60 {
    background-color: #3b5073 !important;
}

.background-blue-30 {
    background-color: var(--blue-30) !important;
}

.background-grey-10 {
    background-color: var(--grey-10) !important;
}

.background-grey-0 {
    background-color: var(--grey-0) !important;
}

.background-violet {
    background-color: var(--violet) !important;
}

.line-height-100 {
    line-height: 100% !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

/* COLUMNS */

.columns {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.column-750 {
    margin-right: 45px;
    width: calc(100% - 260px - 45px);
}

@media only screen and (max-width: 1023px) {
    .column-750 {
        margin-right: 0;
        width: 100%;
    }
}

.column-sticky-menu {
    width: 260px;
    max-width: 260px;
}

/* BORDER RADIUS */

.has-border-radius-8 {
    border-radius: 8px;
}

.has-border-radius-16 {
    border-radius: 16px;
}

.has-border-radius-24 {
    border-radius: 24px;
}

/* SIDENAVIGATION */

.sideNavigation {
    top: 40px;
    background-color: #F8F9FB;
    will-change: height;
    transition: .3s height;
}

.sideNavigation .group-arrow {
    margin: auto 0;
}

.sideNavigation .columns {
    gap: 20px;
}

.sideNavigation .sideNavigation-block .sideNavigation-anchor {
    width: 100%;
    background-color: transparent;
    color: var(--grey-70);
}

.sideNavigation .sideNavigation-block .sideNavigation-anchor a {
    color: inherit;
    padding-right: 5px;
}

.sideNavigation .sideNavigation-block button.sideNavigation-anchor .group-arrow {
    cursor: pointer;
    color: var(--grey-20);
}

.sideNavigation .sideNavigation-block span,
.sideNavigation .sideNavigation-block a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    font-family: 'Inter', sans-serif !important;
}

.sideNavigation .sideNavigation-block .sideNavigation-anchor > .icon-text {
    flex-wrap: nowrap;
}

.sideNavigation .sideNavigation-block .sideNavigation-anchor.is-active {
    color: var(--primary);
}

.sideNavigation .sideNavigation-block .sideNavigation-childrens {
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    transition: .3s max-height;
}

.sideNavigation .sideNavigation-block .group-arrow {
    cursor: pointer;
    transform: rotate(0);
    will-change: transform;
    transition: .3s transform;
}

.sideNavigation .sideNavigation-block.is-active button.sideNavigation-anchor,
.sideNavigation .sideNavigation-block.is-active button.sideNavigation-anchor .group-arrow {
    color: var(--primary) !important;
}

.sideNavigation .sideNavigation-block.is-active .sideNavigation-childrens {
    max-height: 500px;
}

.sideNavigation .sideNavigation-block.is-active .group-arrow {
    transform: rotate(-180deg);
}

/* BACK BUTTON */

.back-button {
    margin-bottom: 48px;
    min-width: fit-content;
    color: var(--grey-70);
}

/* TOGGLE CONTAINER */

.toggle-container {
    background-color: var(--grey-0);
    border-radius: 16px;
    padding: 0;
}

.toggle-container .toggle-container-header {
    position: relative;
    display: flex;
    width: 100%;
    color: black
    font-size: 18px;
    font-family: 'Inter', 'Roboto', 'Open Sans', sans-serif;
    line-height: 24px;
    background-color: transparent;
    border: none;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    text-align: left;
}

.toggle-container .toggle-container-header::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    width: 6px;
    height: 24px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: transparent;
    will-change: background-color;
    transition: 1s background-color;
}

.toggle-container .toggle-container-header .container-title {
    color: var(--blue-100);
    font-size: 18px;
    line-height: 24px;
}

.toggle-container .toggle-container-header .header-arrow {
    color: var(--grey-30);
    transform: rotate(0);
    will-change: transform;
    transition: .3s transform;
}

.toggle-container .toggle-container-content {
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px 0 24px;
    will-change: max-height, padding;
    transition: .5s max-height, .5s padding;
}

.toggle-container.is-open .toggle-container-header::before {
    background-color: var(--primary);
}

.toggle-container.is-open .toggle-container-header .header-arrow {
    color: var(--primary);
    transform: rotate(-180deg);
}

.toggle-container.is-open .toggle-container-content {
    max-height: 10000px;
    padding: 0 24px 24px 24px;
}

.landingPageSection .toggle-container .toggle-container-header {
    padding: 24px 48px;
}

.landingPageSection .toggle-container .toggle-container-content {
    padding: 0 48px 0 48px;
}

.landingPageSection .toggle-container.is-open .toggle-container-content {
    padding: 0 48px 24px 48px;
}

@media only screen and (max-width: 800px) {
    .toggle-container .toggle-container-header::before {
        top: calc(50% - 20px);
        height: 40px;
    }

    .toggle-container .toggle-container-header {
        padding: 20px 16px !important;
        gap: 24px;
    }

    .toggle-container .toggle-container-content {
        padding: 0 20px 0 20px !important;
    }

    .toggle-container.is-open .toggle-container-content {
        padding: 0 20px 16px 20px !important;
    }
}

/* real stories */
.real-stories-swiper{
    position: relative;
    padding: 0 60px;
}

@media only screen and (max-width: 800px) {
    .real-stories-swiper{
        padding: 0 44px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
  }

.swiper-button-prev,
.swiper-button-next {
    top: 0;
    margin: 0;
    height: 100%;
    width: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--grey-0);
    border-radius: 12px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: block;
    color: var(--grey-70);
    font-size: 15px;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.real-story-card {
    box-sizing: border-box;
    padding: 24px;
    height: 320px;
    background-color: var(--grey-0);
    border-radius: 16px;
}

.real-story-card img {
    height: 135px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

.real-story-card h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2; 
   -webkit-box-orient: vertical;
   min-height: 42px;
   max-height: 42px;
}

/* HIDDEN TEXT */

.hidden-text-wrapper {
}

.hidden-text-wrapper .hidden-text {
    display: none;
}

.hidden-text-wrapper.is-open .hidden-text {
    display: initial;
}

.hidden-text-wrapper .hidden-text-more,
.hidden-text-wrapper .hidden-text-less {
    color: var(--blue-30);
    cursor: pointer;
    font-weight: 600;
}

.hidden-text-wrapper.is-open .hidden-text-more {
    display: none;
}

.hidden-text-wrapper .hidden-text-less {
    display: none;
}

.hidden-text-wrapper.is-open .hidden-text-less {
    display: initial;
}
