* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "inter_regular";
    src: url(../font/Inter_Regular.ttf);
}

@font-face {
    font-family: "FeatureDisplay_Regular";
    src: url(../font/FeatureDisplay_Regular.ttf);
}

@font-face {
    font-family: "CormorantInfant_Regular";
    src: url(../font/CormorantInfant_Regular.ttf);
}

:root {
    --inter_regular: "inter_regular";
    --FeatureDisplay_Regular: "FeatureDisplay_Regular";
    --CormorantInfant_Regular: "CormorantInfant_Regular";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_28: 28px;
    --fs_30: 30px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_38: 38px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_44: 44px;
    --fs_46: 46px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_56: 56px;
    --fs_58: 58px;
    --fs_60: 60px;
    --fs_70: 70px;
    --fs_80: 80px;

    --bg_color_1: #FFFFFF;
    --bg_color_2: #000000;
    --bg_color_3: #F3F1EF;
    --bg_color_4: #FFBB00;
    --bg_color_5: #005456;
    --bg_color_6: #FEC023;
    --bg_color_7: #F0F8FF;

    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #4A4A4A;
    --text_color_4: #171717;
    --text_color_5: #C9C9C9;
    --text_color_6: #606366;
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

p,
span,
li,
div {
    font-family: var(--inter_regular);
}

.site_header {
    width: 100%;
    background-color: var(--bg_color_1);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site_header .custom_navbar {
    min-height: 84px;
    padding: 0;
    background-color: var(--bg_color_1);
}

.site_header .custom_navbar .header_container {
    display: flex;
    align-items: center;
}

.site_header .custom_navbar .site_logo {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_28);
    line-height: 1;
    color: var(--text_color_1);
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.site_header .custom_navbar .site_logo:hover {
    color: var(--text_color_1);
}

.site_header .custom_navbar .nav_menu {
    gap: 34px;
    align-items: center;
}

.site_header .custom_navbar .nav_menu .nav-link {
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 600;
    color: var(--text_color_1);
    padding: 0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.site_header .custom_navbar .nav_menu .nav-link:hover,
.site_header .custom_navbar .nav_menu .nav-link.active {
    color: var(--text_color_1);
}

.site_header .custom_navbar .nav_menu .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--bg_color_4);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: all 0.3s ease;
}

.site_header .custom_navbar .nav_menu .nav-link:hover::after,
.site_header .custom_navbar .nav_menu .nav-link.active::after {
    width: 100%;
}

.site_header .custom_navbar .header_btn_wrap {
    display: flex;
    align-items: center;
}

.site_header .custom_navbar .header_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 9px;
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site_header .custom_navbar .header_cta_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.site_header .custom_navbar .custom_toggler {
    border: 0;
    padding: 0;
    width: 34px;
    height: 26px;
    box-shadow: none !important;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.site_header .custom_navbar .custom_toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg_color_2);
    border-radius: 20px;
}

.hero_section {
    position: relative;
    background-color: var(--bg_color_3);
    padding: 0;
    overflow: hidden;
}

.hero_section .hero_row {
    min-height: 720px;
}

.hero_section .hero_content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero_section .hero_content .hero_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_color_1);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 999px;
    line-height: 1;
    margin-bottom: 28px;
}

.hero_section .hero_content .hero_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 26px;
}

.hero_section .hero_content .hero_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_20);
    line-height: 1.35;
    color: var(--text_color_3);
    max-width: 450px;
    margin-bottom: 34px;
}

.hero_section .hero_content .hero_btn_group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero_section .hero_content .hero_primary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 9px;
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero_section .hero_content .hero_primary_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.hero_section .hero_content .hero_secondary_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
    padding-bottom: 5px;
}

.hero_section .hero_content .hero_secondary_btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--text_color_1);
    transition: width 0.35s ease;
}

.hero_section .hero_content .hero_secondary_btn:hover::after {
    width: 100%;
}

.hero_section .hero_content .hero_secondary_icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.hero_section .hero_content .hero_secondary_btn:hover .hero_secondary_icon {
    transform: translateX(4px);
}

.hero_section .hero_content .hero_secondary_btn:hover {
    color: var(--text_color_1);
}

.hero_section .hero_gallery {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    height: 720px;
    overflow: hidden;
}

.hero_section .hero_gallery .hero_gallery_col {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero_section .hero_gallery .hero_gallery_swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_section .hero_gallery .hero_gallery_wrapper {
    transition-timing-function: linear !important;
}

.hero_section .hero_gallery .hero_gallery_slide {
    height: auto;
}

.hero_section .hero_gallery .gallery_card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--text_color_5);
}

.hero_section .hero_gallery .gallery_img {
    width: 100%;
    height: auto;
    display: block;
}

.hero_section .hero_circle_shape {
    position: absolute;
    top: -220px;
    left: -180px;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.hero_section .hero_circle_shape .hero_circle_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.9;
}














.research_cards_section {
    padding: 30px 0;
    background-color: var(--bg_color_1);
}

.research_cards_section .research_cards_row {
    row-gap: 24px;
}

.research_cards_section .research_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 405px;
    height: 100%;
    cursor: pointer;
}

.research_cards_section .research_card .research_card_image_wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.research_cards_section .research_card .research_card_image {
    width: 100%;
    height: 405px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.research_cards_section .research_card .research_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.38) 38%,
            rgba(0, 0, 0, 0.14) 100%);
    transition: all 0.35s ease;
}

.research_cards_section .research_card .research_card_content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.research_cards_section .research_card .research_card_tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    color: var(--text_color_2);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 600;
    margin-bottom: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(3px);
}

.research_cards_section .research_card .research_card_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_28);
    line-height: 1.05;
    color: var(--text_color_2);
    margin-bottom: 0;
    transition: margin-bottom 0.35s ease;
}

.research_cards_section .research_card .research_card_desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    color: var(--text_color_2);
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 0;
    transition: max-height 1s ease, opacity 0.8s ease, transform 0.8s ease, margin-top 0.8s ease;
}

.research_cards_section .research_card:hover .research_card_image {
    transform: scale(1.04);
}

.research_cards_section .research_card:hover .research_card_overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.48) 40%,
            rgba(0, 0, 0, 0.16) 100%);
}

.research_cards_section .research_card:hover .research_card_title {
    margin-bottom: 10px;
}

.research_cards_section .research_card:hover .research_card_desc {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0;
}

.research_cards_section .research_card:focus-within .research_card_image {
    transform: scale(1.04);
}

.research_cards_section .research_card:focus-within .research_card_overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.48) 40%,
            rgba(0, 0, 0, 0.16) 100%);
}

.research_cards_section .research_card:focus-within .research_card_title {
    margin-bottom: 10px;
}

.research_cards_section .research_card:focus-within .research_card_desc {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
}

.impact_section {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 100px 0;
    overflow: hidden;
}

.impact_section .impact_content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.impact_section .impact_number {
    font-family: var(--CormorantInfant_Regular);
    font-size: 175px;
    line-height: 1;
    font-weight: 400;
    font-style: italic;
    color: var(--text_color_1);
    margin-bottom: 26px;
}

.impact_section .impact_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 8px;
}

.impact_section .impact_desc {
    max-width: 660px;
    margin: 0 auto 28px;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.45;
    color: var(--text_color_4);
}

.impact_section .impact_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 10px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.impact_section .impact_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.how_work_section {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 90px 0;
    overflow: hidden;
}

.how_work_section .container-fluid {
    padding: 0 150px;
}

.how_work_section .how_work_row {
    row-gap: 30px;
}

.how_work_section .how_work_image_wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.how_work_section .how_work_image_wrap .how_work_image {
    width: 100%;
    height: auto;
    max-height: 850px;
    display: block;
    object-fit: cover;
}

.how_work_section .how_work_content {
    margin-left: auto;
    padding-left: 40px;
}

.how_work_section .how_work_content .how_work_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 600;
    margin-bottom: 22px;
}

.how_work_section .how_work_content .how_work_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 42px;
    color: var(--text_color_1);
    margin-bottom: 15px;
}

.how_work_section .how_work_content .how_work_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.4;
    color: var(--text_color_3);
    margin-bottom: 50px;
    max-width: 380px;
}

.how_work_section .how_work_steps {
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 34px;
}

.how_work_section .how_work_steps .how_work_step {
    width: calc(50% - 40px);
    max-width: 300px;
}

.how_work_section .how_work_steps .how_work_icon_box {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
}

.how_work_section .how_work_steps .how_work_icon_box .how_work_icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.how_work_section .how_work_steps .how_work_step .how_work_step_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_22);
    line-height: 1.1;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.how_work_section .how_work_steps .how_work_step .how_work_step_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.25;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.why_choose_us_section {
    padding: 100px 0;
    background-color: var(--bg_color_5);
}

.why_choose_us_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why_choose_us_section .heading_part .Why_Choose_Us_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background-color: var(--bg_color_1);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 600;
    margin-bottom: 22px;
}

.why_choose_us_section .heading_part .title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 42px;
    color: var(--text_color_2);
    margin-bottom: 15px;
}

.why_choose_us_section .card_part {
    margin-top: 50px;
}

.why_choose_us_section .card_part .row {
    align-items: stretch;
}

.why_choose_us_section .card_part .row>[class*="col-"] {
    display: flex;
}

.why_choose_us_section .card_part .card {
    width: 100%;
    height: 100%;
    min-height: 450px;
    padding: 0;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--bg_color_1);
}

.why_choose_us_section .card_part .card .card-body {
    min-height: 450px;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.why_choose_us_section .card_part .card .title {
    margin-top: auto;
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_28);
    line-height: 1.08;
    color: var(--text_color_1);
    margin-bottom: 8px;
}

.why_choose_us_section .card_part .card .desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.4;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.why_choose_us_section .card_part .first_card .card-body {
    position: relative;
}

.why_choose_us_section .card_part .first_card .first_card_badge_wrap {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

.why_choose_us_section .card_part .first_card .first_card_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 600;
}

.why_choose_us_section .card_part .first_card .animation_part {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

.why_choose_us_section .card_part .first_card .animation_part .ring-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_us_section .card_part .first_card .animation_part .ring-wrap canvas {
    width: 180px;
    height: 180px;
    display: block;
}

.why_choose_us_section .card_part .second_card .animation {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why_choose_us_section .card_part .second_card .slider-wrapper {
    width: 100%;
    max-width: 300px;
    position: relative;
    height: 205px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 12%,
            rgba(0, 0, 0, 0.6) 25%,
            var(--bg_color_2) 38%,
            var(--bg_color_2) 62%,
            rgba(0, 0, 0, 0.6) 75%,
            rgba(0, 0, 0, 0.2) 88%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 12%,
            rgba(0, 0, 0, 0.6) 25%,
            var(--bg_color_2) 38%,
            var(--bg_color_2) 62%,
            rgba(0, 0, 0, 0.2) 88%,
            transparent 100%);
}

.why_choose_us_section .card_part .second_card .slider-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    width: 100%;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.why_choose_us_section .card_part .second_card .member-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    flex-shrink: 0;
}

.why_choose_us_section .card_part .second_card .member-card.active {
    background: var(--bg_color_3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.why_choose_us_section .card_part .second_card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}

.why_choose_us_section .card_part .second_card .member-card.active .avatar {
    width: 52px;
    height: 52px;
}

.why_choose_us_section .card_part .second_card .member-name {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_3);
    transition: all 0.4s ease;
    margin-bottom: 3px;
}

.why_choose_us_section .card_part .second_card .member-card.active .member-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text_color_4);
}

.why_choose_us_section .card_part .second_card .member-role {
    font-family: var(--inter_regular);
    font-size: 11px;
    color: var(--text_color_5);
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.why_choose_us_section .card_part .second_card .member-card.active .member-role {
    font-size: 12px;
    color: var(--text_color_5);
}

.why_choose_us_section .card_part .second_card .nav-dots {
    display: none;
}

.why_choose_us_section .card_part .third_card .animation {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_us_section .card_part .third_card .orbit-root {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_us_section .card_part .third_card .orbit-scene {
    position: relative;
    width: 220px;
    height: 220px;
}

.why_choose_us_section .card_part .third_card .orbit-ring {
    position: absolute;
    inset: 0;
    animation: spin 12s linear infinite;
}

.why_choose_us_section .card_part .third_card .orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--text_color_4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.why_choose_us_section .card_part .third_card .orbit-center svg {
    width: 28px;
    height: 28px;
}

.why_choose_us_section .card_part .third_card .orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg_color_3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: 0 0;
}

.why_choose_us_section .card_part .third_card .orbit-dot svg {
    width: 18px;
    height: 18px;
    animation: counter-spin 12s linear infinite;
    color: var(--text_color_1);
}

.why_choose_us_section .card_part .fourth_card .chat_scroll_wrap {
    flex: 1 1 auto;
    position: relative;
    height: 154px;
    overflow: hidden;
    margin-bottom: 0;
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 10%,
            var(--bg_color_2) 28%,
            var(--bg_color_2) 75%,
            rgba(0, 0, 0, 0.35) 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 10%,
            var(--bg_color_2) 28%,
            var(--bg_color_2) 75%,
            rgba(0, 0, 0, 0.35) 90%,
            transparent 100%);
}

.why_choose_us_section .card_part .fourth_card .chat_scroll_track {
    display: flex;
    flex-direction: column;
    gap: 11px;
    will-change: transform;
}

.why_choose_us_section .card_part .fourth_card .chat_row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.why_choose_us_section .card_part .fourth_card .chat_row.chat_row_faded {
    opacity: 0.18;
}

.why_choose_us_section .card_part .fourth_card .chat_avatar_wrap {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg_color_3);
}

.why_choose_us_section .card_part .fourth_card .chat_avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why_choose_us_section .card_part .fourth_card .chat_bubble {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    max-width: calc(100% - 44px);
}

.why_choose_us_section .card_part .fourth_card .chat_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.2;
    color: var(--text_color_1);
    margin-bottom: 0;
    white-space: nowrap;
}

.why_choose_us_section .card_part .fifth_card .call_animation {
    flex: 1 1 auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.why_choose_us_section .card_part .fifth_card .phone-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.why_choose_us_section .card_part .fifth_card .phone-container .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.16);
    width: 100px;
    height: 100px;
    opacity: 0;
    animation: ripple 4.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    will-change: transform, opacity;
}

.why_choose_us_section .card_part .fifth_card .phone-container .ring-1 {
    animation-delay: 0s;
}

.why_choose_us_section .card_part .fifth_card .phone-container .ring-2 {
    animation-delay: 1.6s;
}

.why_choose_us_section .card_part .fifth_card .phone-container .ring-3 {
    animation-delay: 3.2s;
}

.why_choose_us_section .card_part .fifth_card .phone-container .btnphone {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_us_section .card_part .fifth_card .phone-container .phone-icon {
    width: 40px;
    height: 40px;
    fill: var(--bg_color_1);
}

.why_choose_us_section .card_part .sixth_card {
    min-height: 340px;
    height: 100%;
    background-image: url("../image/sixthcard_bg.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.why_choose_us_section .card_part .sixth_card .card-body {
    position: relative;
    min-height: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.why_choose_us_section .card_part .sixth_card .sixth_card_overlay {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 70%;
    z-index: 1;
    backdrop-filter: blur(50px);
    background-color: rgba(0, 0, 0, 0.5);
    mask: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 40%, var(--bg_color_2) 72%);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 40%, var(--bg_color_2) 72%);
}

.why_choose_us_section .card_part .sixth_card .sixth_card_content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
}

.why_choose_us_section .card_part .sixth_card .title {
    color: var(--text_color_2);
    line-height: 1.12;
    margin-top: 0;
    margin-bottom: 18px;
}

.why_choose_us_section .card_part .sixth_card .sixth_card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 600;
    padding: 0 25px;
    border-radius: 9px;
    text-decoration: none;
    transition: 0.3s;
}

.why_choose_us_section .card_part .sixth_card .sixth_card_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.5;
    }

    100% {
        transform: scale(2.15);
        opacity: 0;
    }
}

.pricing_section {
    background-color: var(--bg_color_1);
    padding: 110px 0;
    overflow: hidden;
}

.pricing_section .pricing_row {
    row-gap: 30px;
}

.pricing_section .pricing_left_part {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing_section .pricing_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 20px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing_section .pricing_main_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    color: var(--text_color_1);
    margin-bottom: 50px;
}

.pricing_section .pricing_custom_box {
    max-width: 420px;
    background-color: var(--bg_color_3);
    border-radius: 18px;
    padding: 26px 26px 24px;
}

.pricing_section .pricing_custom_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_22);
    line-height: 1.15;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.pricing_section .pricing_custom_desc {
    max-width: 360px;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.05;
    color: var(--text_color_3);
    margin-bottom: 35px;
}

.pricing_section .pricing_custom_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    background-color: var(--bg_color_2);
    color: var(--text_color_2);
    border-radius: 10px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing_section .pricing_custom_btn:hover {
    background-color: var(--text_color_4);
    color: var(--text_color_2);
}

.pricing_section .pricing_card {
    height: 100%;
    border-radius: 20px;
    background-color: var(--bg_color_3);
    padding: 20px;
}

.pricing_section .pricing_card_top {
    background-color: var(--bg_color_1);
    border-radius: 14px;
    padding: 22px 22px 20px;
    margin-bottom: 32px;
}

.pricing_section .pricing_card_top_yellow {
    background-color: var(--bg_color_4);
}

.pricing_section .pricing_card_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_22);
    line-height: 1.15;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.pricing_section .pricing_card_desc {
    min-height: 46px;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.05;
    font-weight: 500;
    color: var(--text_color_3);
    margin-bottom: 20px;
}

.pricing_section .pricing_line {
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(0, 0, 0, 0.22);
    margin-bottom: 30px;
}

.pricing_section .pricing_price_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pricing_section .pricing_price {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 46px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 0;
}

.pricing_section .pricing_card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 10px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pricing_section .pricing_card_btn_yellow {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.pricing_section .pricing_card_btn_yellow:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.pricing_section .pricing_card_btn_black {
    background-color: var(--bg_color_2);
    color: var(--text_color_2);
}

.pricing_section .pricing_card_btn_black:hover {
    background-color: var(--text_color_4);
    color: var(--text_color_2);
}

.pricing_section .pricing_features {
    padding: 0 22px;
}

.pricing_section .pricing_features_label {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_3);
    margin-bottom: 16px;
}

.pricing_section .pricing_feature_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing_section .pricing_feature_item {
    position: relative;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text_color_1);
    padding-left: 14px;
}

.pricing_section .pricing_feature_item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text_color_1);
}

.testimonial_section {
    padding: 50px 0 100px 0;
    background-color: var(--bg_color_1);
    overflow: hidden;
}

.testimonial_section .testimonial_heading_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial_section .testimonial_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 20px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 500;
    margin-bottom: 15px;
}

.testimonial_section .testimonial_main_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    color: var(--text_color_1);
    margin-bottom: 0;
}

.testimonial_section .testimonial_nav_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.testimonial_section .testimonial_nav_btn {
    width: 48px;
    height: 48px;
    border: none;
    background-color: var(--bg_color_3);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial_section .testimonial_nav_btn:hover {
    background-color: var(--bg_color_3);
}

.testimonial_section .testimonial_nav_icon {
    font-size: 34px;
    line-height: 1;
    color: var(--text_color_1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial_section .testimonial_nav_icon svg {
    height: 24px;
    width: 24px;
}

.testimonial_section .testimonial_slider_wrap {
    overflow: hidden;
}

.testimonial_section .testimonial_swiper {
    overflow: visible;
}

.testimonial_section .testimonial_slide {
    height: auto;
}

.testimonial_section .testimonial_card {
    height: 392px;
    border-radius: 22px;
    overflow: hidden;
}

.testimonial_section .testimonial_card_plain {
    background-color: var(--bg_color_3);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial_section .testimonial_card_content {
    width: 100%;
}

.testimonial_section .testimonial_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.3;
    font-weight: 500;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.testimonial_section .testimonial_bottom_part {
    width: 100%;
    border-top: 1px dashed rgba(0, 0, 0, 0.18);
    padding-top: 18px;
    margin-top: 18px;
}

.testimonial_section .testimonial_user_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial_section .testimonial_user_img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.testimonial_section .testimonial_user_info {
    display: flex;
    flex-direction: column;
}

.testimonial_section .testimonial_user_name {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 4px;
}

.testimonial_section .testimonial_user_place {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.testimonial_section .testimonial_card_image {
    position: relative;
}

.testimonial_section .testimonial_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial_section .testimonial_image_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.32) 45%,
            rgba(0, 0, 0, 0.12) 100%);
}

.testimonial_section .testimonial_image_content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.testimonial_section .testimonial_image_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.3;
    font-weight: 500;
    color: var(--text_color_2);
    margin-bottom: 18px;
}

.testimonial_section .testimonial_image_bottom {
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    padding-top: 16px;
}

.testimonial_section .testimonial_image_name {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text_color_2);
    margin-bottom: 4px;
}

.testimonial_section .testimonial_image_place {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.case_study_section {
    padding: 100px 0;
    background-color: var(--bg_color_1);
}

.case_study_section .case_study_section_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.case_study_section .case_study_section_heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.case_study_section .case_study_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 20px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 500;
    margin-bottom: 15px;
}

.case_study_section .case_study_main_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    color: var(--text_color_1);
    margin-bottom: 0;
}

.case_study_section .case_study_section_btn_wrap {
    flex-shrink: 0;
    padding-top: 34px;
}

.case_study_section .case_study_view_all_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 10px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    text-decoration: none;
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 500;
    transition: all 0.3s ease;
}

.case_study_section .case_study_view_all_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.case_study_section .case_study_featured_card {
    display: flex;
    align-items: stretch;
    background-color: var(--bg_color_3);
    border: 1px solid var(--text_color_5);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    cursor: pointer;
}

.case_study_section .case_study_featured_image_wrap {
    width: 48%;
    flex-shrink: 0;
    overflow: hidden;
}

.case_study_section .case_study_featured_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    transform: scale(1.06);
}

.case_study_section .case_study_featured_card:hover .case_study_featured_image {
    transform: scale(1.11);
}

.case_study_section .case_study_featured_content {
    width: 52%;
    display: flex;
    flex-direction: column;
    padding: 18px 24px 20px;
}

.case_study_section .case_study_read_time {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background-color: var(--text_color_4);
    color: var(--text_color_2);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    margin-bottom: 18px;
}

.case_study_section .case_study_featured_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_32);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_4);
    margin-bottom: 10px;
}

.case_study_section .case_study_featured_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    color: var(--text_color_1);
    margin-bottom: auto;
}

.case_study_section .case_study_author_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.case_study_section .case_study_author_image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.case_study_section .case_study_author_info {
    display: flex;
    flex-direction: column;
}

.case_study_section .case_study_author_name {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.1;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 3px;
}

.case_study_section .case_study_author_role {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.1;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.case_study_section .case_study_card_row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.case_study_section .case_study_card_col {
    flex: 1 1 0;
    min-width: 0;
}

.case_study_section .case_study_small_card {
    height: 100%;
    background-color: var(--bg_color_1);
    border: 1px solid transparent;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}

.case_study_section .case_study_small_card .case_study_small_image_wrap {
    overflow: hidden;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.case_study_section .case_study_small_card .case_study_small_image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.case_study_section .case_study_small_card .case_study_small_content {
    padding: 16px 0;
    transition: all 0.35s ease;
}

.case_study_section .case_study_small_card .case_study_small_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.25;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 8px;
    transition: color 0.35s ease;
}

.case_study_section .case_study_small_card .case_study_small_date {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.2;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.case_study_section .case_study_small_card:hover,
.case_study_section .case_study_small_card.case_study_small_card_active {
    background-color: var(--bg_color_3);
    border: 1px solid var(--text_color_5);
}

.case_study_section .case_study_small_card:hover .case_study_small_image_wrap,
.case_study_section .case_study_small_card.case_study_small_card_active .case_study_small_image_wrap {
    border-radius: 12px;
}

.case_study_section .case_study_small_card:hover .case_study_small_image,
.case_study_section .case_study_small_card.case_study_small_card_active .case_study_small_image {
    transform: scale(1.04);
}

.case_study_section .case_study_small_card:hover .case_study_small_content,
.case_study_section .case_study_small_card.case_study_small_card_active .case_study_small_content {
    padding: 16px;
}

.case_study_section .case_study_small_card:hover .case_study_small_title,
.case_study_section .case_study_small_card.case_study_small_card_active .case_study_small_title {
    color: var(--text_color_4);
}

.site_footer {
    position: relative;
    background-image: url("../image/footerbg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.site_footer .footer_top_line,
.site_footer .footer_mid_line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
}

.site_footer .footer_cta_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0 62px;
}

.site_footer .footer_cta_label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--inter_regular);
    font-size: var(--fs_24);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_2);
    margin-bottom: 24px;
}

.site_footer .footer_cta_dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--text_color_2);
    display: inline-block;
    flex-shrink: 0;
}

.site_footer .footer_cta_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_60);
    line-height: 1.02;
    font-weight: 500;
    color: var(--text_color_2);
    margin-bottom: 0;
}

.site_footer .footer_cta_btn_wrap {
    padding-top: 34px;
    flex-shrink: 0;
}

.site_footer .footer_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 9px;
    font-family: var(--inter_regular);
    font-size: var(--fs_15);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site_footer .footer_cta_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.site_footer .footer_links_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 58px 0 110px;
}

.site_footer .footer_col {
    flex: 0 0 auto;
}

.site_footer .footer_connect_col {
    min-width: 420px;
}

.site_footer .footer_col_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_22);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_2);
    margin-bottom: 18px;
}

.site_footer .footer_link_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.site_footer .footer_link_item {
    margin-bottom: 9px;
}

.site_footer .footer_link {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site_footer .footer_link:hover {
    color: var(--bg_color_4);
}

.site_footer .footer_social_links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.site_footer .footer_social_link {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.2;
    font-weight: 500;
    color: var(--text_color_5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site_footer .footer_social_link:hover {
    color: var(--bg_color_4);
}

.site_footer .footer_social_divider {
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.32);
}

.site_footer .footer_bottom_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site_footer .footer_brand_name {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 96px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 0;
}

.site_footer .footer_copyright {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.site_footer .footer_copyright_brand {
    color: var(--bg_color_4);
}

.aboutus_first_section {
    position: relative;
    background-color: var(--bg_color_5);
    padding: 90px 0 0 0;
    overflow: hidden;
}

.aboutus_first_section .aboutus_first_content {
    margin: 0 auto;
    text-align: center;
}

.aboutus_first_section .aboutus_first_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 54px;
    line-height: 1.02;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 16px;
}

.aboutus_first_section .aboutus_first_desc {
    margin: 0 auto 20px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

.aboutus_first_section .aboutus_first_btn_group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.aboutus_first_section .aboutus_first_primary_btn,
.aboutus_first_section .aboutus_first_secondary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 6px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aboutus_first_section .aboutus_first_primary_btn {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_4);
}

.aboutus_first_section .aboutus_first_primary_btn:hover {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.aboutus_first_section .aboutus_first_secondary_btn {
    background-color: transparent;
    color: var(--text_color_2);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.aboutus_first_section .aboutus_first_secondary_btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--text_color_2);
    border-color: var(--text_color_2);
}

.aboutus_first_section .aboutus_first_image_wrap {
    width: 100%;
    height: 370px;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.aboutus_first_section .aboutus_first_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.who_we_are_section {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 100px 0;
    overflow: hidden;
}

.who_we_are_section .who_we_are_row {
    row-gap: 42px;
}

.who_we_are_section .who_we_are_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    font-weight: 600;
    margin-bottom: 22px;
}

.who_we_are_section .who_we_are_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 38px;
    line-height: 1.28;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
    max-width: 635px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.who_we_are_section .who_we_are_title .word {
    display: inline-block;
    white-space: nowrap;
}

.who_we_are_section .who_we_are_title .space {
    display: inline;
}

.who_we_are_section .who_we_are_title .char {
    display: inline;
    color: var(--text_color_5);
    transition: color 0.15s linear;
    font-family: var(--FeatureDisplay_Regular);
}

.who_we_are_section .who_we_are_title .char.filled {
    color: var(--text_color_4);
}

.who_we_are_section .who_we_are_image_wrap {
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
}

.who_we_are_section .who_we_are_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.lost_roots_journey_section {
    position: relative;
    background-color: var(--bg_color_3);
    padding: 90px 0 110px;
    overflow: hidden;
}

.lost_roots_journey_section .lost_roots_journey_heading {
    text-align: center;
    margin-bottom: 48px;
}

.lost_roots_journey_section .lost_roots_journey_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 8px;
}

.lost_roots_journey_section .lost_roots_journey_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.35;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.lost_roots_journey_section .lost_roots_journey_content {
    position: relative;
    min-height: 370px;
    margin-bottom: 54px;
}

.lost_roots_journey_section .lost_roots_journey_step_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    position: absolute;
    inset: 0;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.lost_roots_journey_section .lost_roots_journey_step_content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.lost_roots_journey_section .lost_roots_journey_image_wrap {
    width: 350px;
    height: 370px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--text_color_5);
}

.lost_roots_journey_section .lost_roots_journey_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.lost_roots_journey_section .lost_roots_journey_info {
    max-width: 310px;
    padding-top: 24px;
}

.lost_roots_journey_section .lost_roots_journey_year {
    font-family: var(--CormorantInfant_Regular);
    font-size: var(--fs_50);
    line-height: 1;
    font-weight: 400;
    color: var(--bg_color_4);
    margin-bottom: 22px;
}

.lost_roots_journey_section .lost_roots_journey_subtitle {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_32);
    line-height: 0.98;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 10px;
}

.lost_roots_journey_section .lost_roots_journey_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.15;
    color: var(--bg_color_2);
    margin-bottom: 0;
}

.lost_roots_journey_section .lost_roots_timeline_wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.lost_roots_journey_section .lost_roots_timeline_line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dashed rgba(0, 0, 0, 0.45);
    overflow: visible;
}

.lost_roots_journey_section .lost_roots_timeline_fill {
    position: absolute;
    left: 0;
    top: -2px;
    width: 0%;
    height: 2px;
    background-color: var(--bg_color_5);
    transition: width 0.2s linear;
}

.lost_roots_journey_section .lost_roots_timeline_item {
    position: relative;
    z-index: 2;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.lost_roots_journey_section .lost_roots_timeline_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--bg_color_4);
    display: block;
    margin-bottom: 9px;
    margin-top: -2px;
    transition: all 0.3s ease;
}

.lost_roots_journey_section .lost_roots_timeline_year {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_28);
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.lost_roots_journey_section .lost_roots_timeline_item.active .lost_roots_timeline_dot {
    width: 8px;
    height: 8px;
    background-color: var(--bg_color_4);
    box-shadow: 0 0 0 5px rgba(255, 187, 0, 0.18);
}

.lost_roots_journey_section .lost_roots_timeline_item.active .lost_roots_timeline_year {
    opacity: 1;
}

.what_we_do_section {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 100px 0;
    overflow: hidden;
}

.what_we_do_section .what_we_do_star_img {
    position: absolute;
    top: 0;
    right: -6px;
    width: 190px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.what_we_do_section .container {
    position: relative;
    z-index: 2;
}

.what_we_do_section .what_we_do_heading {
    text-align: center;
    margin-bottom: 40px;
}

.what_we_do_section .what_we_do_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.what_we_do_section .what_we_do_box {
    margin: 0 auto;
    border: 1px solid var(--bg_color_5);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--bg_color_1);
}

.what_we_do_section .what_we_do_item {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
}

.what_we_do_section .what_we_do_item_1,
.what_we_do_section .what_we_do_item_2 {
    border-bottom: 1px solid var(--bg_color_5);
}

.what_we_do_section .what_we_do_item_1,
.what_we_do_section .what_we_do_item_3 {
    border-right: 1px solid var(--bg_color_5);
}

.what_we_do_section .what_we_do_icon_wrap {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what_we_do_section .what_we_do_icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.what_we_do_section .what_we_do_item_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_24);
    line-height: 1.25;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.mission_vision_section {
    position: relative;
    background-color: var(--bg_color_3);
    padding: 100px 0;
    overflow: hidden;
}

.mission_vision_section .mission_vision_row {
    align-items: stretch;
}

.mission_vision_section .mission_vision_card {
    height: 100%;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.mission_vision_section .mission_card {
    background-color: var(--bg_color_2);
}

.mission_vision_section .mission_card .mission_card_image_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.mission_vision_section .mission_card .mission_card_image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mission_vision_section .mission_card .mission_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, var(--bg_color_2) 100%);
    z-index: 1;
}

.mission_vision_section .mission_card .mission_card_content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mission_vision_section .mission_card .mission_card_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 10px;
}

.mission_vision_section .mission_card .mission_card_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_24);
    line-height: 1.3;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: auto;
}

.mission_vision_section .mission_card .mission_card_bottom_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.3;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 0;
}

.mission_vision_section .vision_card {
    background-color: var(--bg_color_5);
}

.mission_vision_section .vision_card .vision_card_content {
    height: 100%;
    min-height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mission_vision_section .vision_card .vision_card_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 10px;
}

.mission_vision_section .vision_card .vision_card_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_24);
    line-height: 1.3;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: auto;
}

.mission_vision_section .vision_card .vision_card_bottom_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1.3;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 0;
}


.how_we_work_section_v2 {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 100px 0;
    overflow: hidden;
}

.how_we_work_section_v2 .how_we_work_top_row {
    margin-bottom: 52px;
}

.how_we_work_section_v2 .how_we_work_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.how_we_work_section_v2 .how_we_work_desc_wrap {
    margin-left: auto;
}

.how_we_work_section_v2 .how_we_work_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.3;
    color: #464646;
    margin-bottom: 0;
}

.how_we_work_section_v2 .how_we_work_steps_wrap {
    position: relative;
}

.how_we_work_section_v2 .how_we_work_step {
    text-align: center;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how_we_work_section_v2 .how_we_work_step_border {
    border-left: 1px solid #d8d8d8;
}

.how_we_work_section_v2 .how_we_work_icon_wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how_we_work_section_v2 .how_we_work_icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.how_we_work_section_v2 .how_we_work_step_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_24);
    line-height: 1.1;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 14px;
}

.how_we_work_section_v2 .how_we_work_step_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.2;
    color: #464646;
    margin-bottom: 0;
}

.howitworks_first_section {
    position: relative;
    background-color: var(--bg_color_5);
    padding: 90px 0 0 0;
    overflow: hidden;
}

.howitworks_first_section .howitworks_first_content {
    margin: 0 auto;
    text-align: center;
}

.howitworks_first_section .howitworks_first_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 54px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 16px;
}

.howitworks_first_section .howitworks_first_desc {
    margin: 0 auto 20px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

.howitworks_first_section .howitworks_first_btn_group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.howitworks_first_section .howitworks_first_primary_btn,
.howitworks_first_section .howitworks_first_secondary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 6px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.howitworks_first_section .howitworks_first_primary_btn {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border: 1px solid var(--bg_color_4);
}

.howitworks_first_section .howitworks_first_primary_btn:hover {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.howitworks_first_section .howitworks_first_secondary_btn {
    background-color: transparent;
    color: var(--text_color_2);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.howitworks_first_section .howitworks_first_secondary_btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--text_color_2);
    border-color: var(--text_color_2);
}

.howitworks_first_section .howitworks_first_image_wrap {
    --carousel-card-width: 320px;
    --carousel-card-height: 420px;
    --carousel-radius: 2500px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* .howitworks_first_section .howitworks_first_image_wrap .carousel {
    position: absolute;
    left: calc(50% - 150px);
    top: 0;
    transform-origin: 150px 2500px;
    will-change: transform;
    cursor: grab;
} */

.howitworks_first_section .howitworks_first_image_wrap .carousel {
    position: absolute;
    left: calc(50% - (var(--carousel-card-width) / 2));
    top: 0;
    transform-origin: calc(var(--carousel-card-width) / 2) var(--carousel-radius);
    will-change: transform;
    cursor: grab;
}

.howitworks_first_section .howitworks_first_image_wrap .carousel:active {
    cursor: grabbing;
}

/* .howitworks_first_section .howitworks_first_image_wrap .carousel .wrapper {
    position: absolute;
    height: 100vh;
    transform-origin: 150px 2500px;
} */

.howitworks_first_section .howitworks_first_image_wrap .carousel .wrapper {
    position: absolute;
    height: 100vh;
    transform-origin: calc(var(--carousel-card-width) / 2) var(--carousel-radius);
    will-change: transform;
}

/* .howitworks_first_section .howitworks_first_image_wrap .carousel .wrapper .img_part {
    width: 320px;
    height: 420px;
    border-radius: 16px;
    background: var(--bg_color_5);
    overflow: hidden;
} */

.howitworks_first_section .howitworks_first_image_wrap .carousel .wrapper .img_part {
    width: var(--carousel-card-width);
    height: var(--carousel-card-height);
    border-radius: 16px;
    background: var(--bg_color_5);
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.howitworks_first_section .howitworks_first_image_wrap .carousel .wrapper .img_part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process_text_section {
    position: relative;
    background-color: var(--bg_color_3);
    padding: 100px 0;
    overflow: hidden;
}

.process_text_section .process_text_wrap {
    margin: 0 auto;
    text-align: center;
}

.process_text_section .process_text_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.12;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 0;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.process_text_section .process_text_title .word {
    display: inline-block;
    white-space: nowrap;
}

.process_text_section .process_text_title .space {
    display: inline;
}

.process_text_section .process_text_title .char {
    display: inline;
    color: var(--text_color_5);
    transition: color 0.15s linear;
    font-family: var(--FeatureDisplay_Regular);
}

.process_text_section .process_text_title .char.filled {
    color: var(--text_color_4);
}

.guided_journey_section {
    position: relative;
    padding: 0;
    overflow: visible;
    padding: 100px 0 0 0;
}

.guided_journey_section .guided_journey_heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.guided_journey_section .guided_journey_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 8px;
}

.guided_journey_section .guided_journey_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.35;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.guided_journey_section>.container {
    height: 100%;
}

.guided_journey_section .custom_slider {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guided_journey_section .custom_slider,
.guided_journey_section .custom_slider * {
    box-sizing: border-box;
}

.guided_journey_section .custom_slider #image-list {
    display: none;
}

.guided_journey_section .custom_slider .stage {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.guided_journey_section .custom_slider .stage .folder-wrap {
    position: relative;
    z-index: 2;
    width: 420px;
    max-width: calc(100% - 40px);
    height: 500px;
    display: flex;
    align-items: stretch;
}

.guided_journey_section .custom_slider .stage .folder-body {
    flex: 1;
    background: var(--bg_color_6);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.guided_journey_section .custom_slider .stage .folder-tab {
    width: 30px;
    align-self: flex-start;
    top: 80px;
    height: 110px;
    background: var(--bg_color_6);
    border-radius: 0 16px 16px 0;
    margin-left: -2px;
    position: relative;
    z-index: 1;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.guided_journey_section .custom_slider .stage .pages-stack {
    position: absolute;
    top: 22px;
    right: 22px;
    bottom: 22px;
    left: 22px;
}

.guided_journey_section .custom_slider .stage .page {
    position: absolute;
    inset: 0;
    background: var(--bg_color_1);
    border-radius: 10px;
    box-shadow:
        0 3px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    will-change: transform, opacity;
    transform-origin: left center;
}

.guided_journey_section .custom_slider .stage .page[data-slot="0"] {
    z-index: 3;
    transform: translate(0px, 0px);
}

.guided_journey_section .custom_slider .stage .page[data-slot="1"] {
    z-index: 2;
    transform: translate(5px, 4px);
}

.guided_journey_section .custom_slider .stage .page[data-slot="2"] {
    z-index: 1;
    transform: translate(10px, 8px);
}

.guided_journey_section .custom_slider .stage .page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    pointer-events: none;
    user-select: none;
}

@keyframes guidedJourneyFlyLeft {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    25% {
        transform: translate(-28px, -10px) rotate(-3deg) scale(0.98);
        opacity: 1;
    }

    100% {
        transform: translate(-165%, 14px) rotate(-10deg) scale(0.92);
        opacity: 0;
    }
}

.guided_journey_section .custom_slider .flying-out {
    animation: guidedJourneyFlyLeft 0.52s cubic-bezier(0.5, 0, 0.1, 1) forwards !important;
    z-index: 10 !important;
}

@keyframes guidedJourneySlideInLeft {
    0% {
        transform: translate(-155%, 12px) rotate(8deg);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

.guided_journey_section .custom_slider .sliding-in {
    animation: guidedJourneySlideInLeft 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes guidedJourneyGlow {
    0% {
        box-shadow:
            0 3px 16px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(255, 187, 0, 0.38);
    }

    100% {
        box-shadow:
            0 3px 16px rgba(0, 0, 0, 0.2),
            0 0 0 rgba(255, 187, 0, 0);
    }
}

.guided_journey_section .custom_slider .glow-flash {
    animation: guidedJourneyGlow 0.55s ease-out forwards;
}

.what_get_section {
    position: relative;
    overflow: visible;
    padding: 0;
}

.what_get_section,
.what_get_section * {
    box-sizing: border-box;
}

.what_get_section .container {
    height: 100%;
}

.what_get_section .what_get_sticky {
    position: sticky;
    top: 0;
    /* height: 100%; */
    /* min-height: 100vh; */
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.what_get_section .what_get_heading {
    text-align: center;
    margin-bottom: 40px;
}

.what_get_section .what_get_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1.05;
    font-weight: 400;
    color: var(--text_color_4);
    margin-bottom: 8px;
}

.what_get_section .what_get_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.35;
    color: var(--text_color_3);
    margin-bottom: 0;
}

.what_get_section .what_get_line_wrap {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: var(--bg_color_3);
    margin-bottom: 52px;
    overflow: hidden;
}

.what_get_section .what_get_line_fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg_color_4);
}

.what_get_section .what_get_cards_row {
    align-items: stretch;
    row-gap: 30px;
    overflow: visible;
}

.what_get_section .what_get_card_wrap {
    width: 100%;
    height: 360px;
    overflow: visible;
    border-radius: 18px;
}

.what_get_section .what_get_card {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(80vh);
    will-change: transform;
}

.what_get_section .what_get_card.card_dark {
    background-color: var(--bg_color_5);
    color: var(--text_color_2);
}

.what_get_section .what_get_card.card_yellow {
    background-color: var(--bg_color_4);
    color: var(--text_color_4);
}

.what_get_section .what_get_card .what_get_icon {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 22px;
}

.what_get_section .what_get_card h3 {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_32);
    line-height: 1.05;
    font-weight: 400;
    margin: 0;
}

.what_get_section .what_get_card p {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.faq_first_section {
    position: relative;
    background-color: var(--bg_color_5);
    padding: 78px 0 42px;
    overflow: hidden;
}

.faq_first_section .faq_first_content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq_first_section .faq_first_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 10px;
}

.faq_first_section .faq_first_desc {
    max-width: 560px;
    margin: 0 auto 32px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.3;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.76);
}

.faq_first_section .faq_first_search_part {
    max-width: 520px;
    margin: 0 auto;
}

.faq_first_section .faq_first_search_form {
    width: 100%;
}

.faq_first_section .faq_first_search_input_wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 5px 6px 5px 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.faq_first_section .faq_first_search_icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.faq_first_section .faq_first_search_input {
    flex: 1;
    min-width: 0;
    height: 42px;
    border: 0;
    outline: none;
    background: transparent;
    box-shadow: none;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_2);
    padding: 0 14px 0 0;
}

.faq_first_section .faq_first_search_input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.faq_first_section .faq_first_search_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 42px;
    padding: 0 20px;
    border: 0;
    outline: none;
    border-radius: 10px;
    background-color: var(--bg_color_3);
    color: var(--text_color_3);
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq_first_section .faq_first_search_btn:hover {
    background-color: var(--bg_color_1);
    color: var(--text_color_4);
}

.faq_first_section .faq_first_search_input_wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.faq_questions_section {
    position: relative;
    background-color: var(--bg_color_1);
    padding: 55px 0 70px;
    overflow: hidden;
}

.faq_questions_section,
.faq_questions_section * {
    box-sizing: border-box;
}

.faq_questions_section .faq_questions_content {
    margin: 0 auto;
}

.faq_questions_section .faq_questions_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_24);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 24px;
}

.faq_questions_section .faq_accordion {
    width: 100%;
    background-color: var(--bg_color_1);
    overflow: hidden;
    border: 1px solid var(--bg_color_3);
    box-shadow: 0px 4px 20px -2px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.faq_questions_section .faq_item {
    border-bottom: 1px solid var(--bg_color_3);
}

.faq_questions_section .faq_item:last-child {
    border-bottom: 0;
}

.faq_questions_section .faq_question_btn {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 0;
    outline: none;
    background-color: var(--bg_color_1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.3;
    font-weight: 500;
    color: var(--text_color_4);
}

.faq_questions_section .faq_question_btn:hover {
    background-color: var(--bg_color_1);
}

.faq_questions_section .faq_arrow {
    flex-shrink: 0;
    font-size: var(--fs_18);
    color: var(--text_color_4);
    transition: transform 0.3s ease;
}

.faq_questions_section .faq_item.active .faq_arrow {
    transform: rotate(180deg);
}

.faq_questions_section .faq_answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg_color_1);
    transition: max-height 0.35s ease;
}

.faq_questions_section .faq_answer p {
    margin: 0;
    padding: 0 22px 18px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.55;
    color: var(--text_color_3);
}

.faq_questions_section .faq_cta_box {
    position: relative;
    margin-top: 38px;
    min-height: 200px;
    border-radius: 32px;
    background:
        radial-gradient(circle at center, rgba(255, 187, 0, 0.38) 0%, rgba(255, 187, 0, 0.18) 22%, rgba(0, 0, 0, 0) 55%),
        var(--text_color_4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 34px 24px;
}

.faq_questions_section .faq_cta_box h3 {
    font-family: var(--inter_regular);
    font-size: var(--fs_36);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text_color_2);
    margin-bottom: 14px;
}

.faq_questions_section .faq_cta_box p {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.45;
    font-weight: 400;
    color: var(--text_color_5);
    margin-bottom: 18px;
}

.faq_questions_section .faq_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 9px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    text-decoration: none;
    font-family: var(--inter_regular);
    font-size: var(--fs_14);
    line-height: 1;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq_questions_section .faq_cta_btn:hover {
    background-color: var(--bg_color_1);
    color: var(--text_color_4);
}

.contact_modal_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.58);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact_modal_overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact_modal_overlay .contact_modal_container {
    padding-left: 48px;
    padding-right: 48px;
}

.contact_modal_overlay .contact_modal_box {
    position: relative;
    max-height: calc(100vh - 35px);
    overflow-y: auto;
    background-color: var(--bg_color_3);
    border-radius: 12px;
    padding: 48px 44px 42px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
    transform: translateX(24px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.contact_modal_overlay.active .contact_modal_box {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.contact_modal_overlay .contact_modal_close {
    position: absolute;
    top: 42px;
    right: 42px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background-color: var(--bg_color_2);
    color: var(--text_color_2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.contact_modal_overlay .contact_modal_close_icon {
    width: 22px;
    height: 22px;
}

.contact_modal_overlay .contact_modal_header {
    padding-right: 54px;
    padding-bottom: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--text_color_5);
}

.contact_modal_overlay .contact_modal_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_60);
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 14px;
}

.contact_modal_overlay .contact_modal_desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
    line-height: 1.4;
    color: var(--text_color_4);
    margin-bottom: 0;
}

.contact_modal_overlay .contact_form_row {
    --bs-gutter-x: 34px;
    --bs-gutter-y: 26px;
}

.contact_modal_overlay .contact_form_group {
    position: relative;
}

.contact_modal_overlay .contact_form_input {
    width: 100%;
    height: 50px;
    border: 0;
    border-bottom: 1px solid var(--text_color_5);
    background-color: transparent;
    outline: none;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    padding: 14px 0 7px;
}

.contact_modal_overlay .contact_form_label {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_18);
    line-height: 1;
    color: var(--text_color_1);
    pointer-events: none;
    transition: 0.25s ease;
}

.contact_modal_overlay .contact_form_input:focus+.contact_form_label,
.contact_modal_overlay .contact_form_input:valid+.contact_form_label {
    top: -9px;
    font-size: var(--fs_24);
    color: var(--text_color_1);
}

.contact_modal_overlay .contact_message_group {
    margin-top: 22px;
}

.contact_modal_overlay .contact_message_label {
    position: static;
    display: block;
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin-bottom: 15px;
}

.contact_modal_overlay .contact_message_textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
    border: 1px solid var(--text_color_5);
    border-radius: 9px;
    background-color: transparent;
    outline: none;
    padding: 14px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.4;
    color: var(--text_color_1);
}

.contact_modal_overlay .contact_message_textarea::placeholder {
    color: var(--text_color_3);
}

.contact_modal_overlay .contact_modal_bottom {
    margin-top: 12px;
}

.contact_modal_overlay .contact_modal_note {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    color: var(--text_color_1);
    margin-bottom: 0;
}

.contact_modal_overlay .contact_submit_btn_part {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

.contact_modal_overlay .contact_submit_btn {
    flex-shrink: 0;
    min-height: 42px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact_modal_overlay .contact_submit_btn:hover {
    background-color: var(--bg_color_4);
}

.contact_modal_overlay .contact_submit_icon {
    font-size: var(--fs_18);
    line-height: 1;
}

.contact_modal_overlay .contact_info_row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    margin-top: 34px;
}

.contact_modal_overlay .contact_info_card {
    min-height: 130px;
    height: 100%;
    border: 1px solid var(--text_color_5);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_modal_overlay .contact_info_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_24);
    line-height: 1.1;
    color: var(--text_color_1);
    margin-bottom: 50px;
}

.contact_modal_overlay .contact_info_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    color: var(--text_color_1);
    margin-bottom: 5px;
}

body.contact_modal_open {
    overflow: hidden;
}

.services_first_section {
    background-color: var(--bg_color_5);
    padding: 90px 0;
}

.services_first_section .services_first_content {
    text-align: left;
    max-width: 530px;
}

.services_first_section .services_first_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 54px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text_color_2);
    margin-bottom: 16px;
}

.services_first_section .services_first_desc {
    margin: 0 auto 20px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

.services_first_section .services_first_image_wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
    max-height: 400px;
}

.services_first_section .services_first_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.services_second_section {
    padding: 90px 0;
}

.services_second_section .card {
    background-color: var(--bg_color_7);
    border-radius: 30px;
    border: none;
}

.services_second_section .card .image_wrapper {
    width: 100%;
}

.services_second_section .card .image_wrapper .service_img {
    width: 100%;
}

.services_second_section .card .card-body .title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 16px;
}

.services_second_section .card .card-body .desc {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 400;
    color: var(--text_color_6);
}

.services_second_section .card .card-body ul li {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1.35;
    font-weight: 400;
    color: var(--text_color_6);
}










.auth_page_section {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg_color_5);
    overflow: hidden;
}

.auth_page_section .auth_main_row {
    min-height: 100vh;
}

.auth_page_section .auth_left_panel {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg_color_5);
    position: relative;
    padding: 24px 0 60px;
    overflow: hidden;
}

.auth_page_section .auth_right_panel {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg_color_1);
    border-radius: 6px 0 0 6px;
    position: relative;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth_page_section .auth_brand {
    display: inline-block;
    margin-left: 34px;
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_28);
    line-height: 1;
    color: var(--text_color_2);
    text-decoration: none;
}

.auth_page_section .auth_brand:hover {
    color: var(--text_color_2);
}

.auth_page_section .auth_left_content {
    position: absolute;
    left: 0;
    right: 0;
    top: 230px;
}

.auth_page_section .auth_left_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 400;
    color: var(--text_color_2);
    text-align: center;
    margin-bottom: 58px;
}

.auth_page_section .auth_slider_clip {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.auth_page_section .auth_card_swiper {
    width: 100%;
    overflow: visible;
}

.auth_page_section .auth_card_swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: ease;
}

.auth_page_section .auth_card_swiper .swiper-slide {
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth_page_section .auth_card_item {
    width: 100%;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth_page_section .auth_feature_card {
    width: 230px;
    height: 315px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 12px;
    padding: 28px 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.35s ease;
}

.auth_page_section .auth_card_swiper .swiper-slide-active {
    z-index: 5;
}

.auth_page_section .auth_card_swiper .swiper-slide-active .auth_feature_card {
    transform: scale(1.18);
}

.auth_page_section .auth_feature_icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth_page_section .auth_feature_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.auth_page_section .auth_feature_card h3 {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 34px;
    line-height: 1.02;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 0;
}

.auth_page_section .auth_feature_card p {
    font-family: var(--inter_regular);
    font-size: 13px;
    line-height: 1.15;
    color: var(--text_color_1);
    margin-top: auto;
    margin-bottom: 0;
}

.auth_page_section .auth_login_text {
    position: absolute;
    top: 26px;
    right: 32px;
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    color: #666666;
}

.auth_page_section .auth_login_text a {
    color: var(--text_color_1);
    font-weight: 500;
    text-decoration: underline;
}

.auth_page_section .auth_form_wrap {
    width: 100%;
    max-width: 500px;
    margin-top: 8px;
}

.auth_page_section .auth_form_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_42);
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    text-align: center;
    margin-bottom: 52px;
}

.auth_page_section .auth_form {
    width: 100%;
}

.auth_page_section .auth_input_group {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    margin-bottom: 18px;
    padding: 16px 14px;
}

.auth_page_section .auth_input_icon {
    color: #b7b7b7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.auth_page_section .auth_input_group input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background-color: transparent;
    font-family: var(--inter_regular);
    font-size: 14px;
    color: var(--text_color_1);
}

.auth_page_section .auth_input_group input::placeholder {
    color: #b2b2b2;
}

.auth_page_section .auth_note {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.2;
    color: #999999;
    margin: 24px 0 16px 0;
}

.auth_page_section .auth_checkbox_row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 24px;
}

.auth_page_section .auth_checkbox_row input {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d5d5d5;
    border-radius: 2px;
    background-color: var(--bg_color_1);
    flex-shrink: 0;
    margin-top: -1px;
    position: relative;
}

.auth_page_section .auth_checkbox_row input:checked {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
}

.auth_page_section .auth_checkbox_row input:checked::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: -3px;
    font-size: 14px;
    color: var(--text_color_1);
}

.auth_page_section .auth_checkbox_row span {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.25;
    color: var(--text_color_1);
}

.auth_page_section .auth_checkbox_row a {
    color: #005fc8;
    text-decoration: underline;
}

.auth_page_section .auth_submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 26px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 10px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
}

.auth_page_section .auth_submit_btn:hover {
    background-color: var(--bg_color_4);
    border-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.auth_page_section .auth_submit_btn span {
    font-size: 18px;
    margin-left: 10px;
}

.auth_page_section .auth_or {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 17px auto 20px;
    max-width: 245px;
}

.auth_page_section .auth_or span {
    height: 1px;
    width: 100%;
    background-color: #9d9d9d;
}

.auth_page_section .auth_or p {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    color: var(--text_color_1);
    margin-bottom: 0;
    white-space: nowrap;
}

.auth_page_section .auth_google_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10.5px 26px;
    border-radius: 10px;
    background-color: var(--bg_color_1);
    color: var(--text_color_1);
    border: 1px solid #d8d8d8;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.auth_page_section .google_icon {
    margin-right: 10px;
}

.personal_info_section {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg_color_1);
    overflow: hidden;
}

.personal_info_section .personal_info_header {
    padding: 18px 31px 0;
}

.personal_info_section .personal_info_logo {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    text-decoration: none;
}

.personal_info_section .personal_info_logo:hover {
    color: var(--text_color_1);
}

.personal_info_section .personal_info_login {
    gap: 2px;
    padding-top: 7px;
    font-family: var(--inter_regular);
    font-size: 13px;
    line-height: 1;
    color: #555555;
}

.personal_info_section .personal_info_login_link {
    color: var(--text_color_1);
    font-weight: 600;
    text-decoration: underline;
}

.personal_info_section .personal_info_container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.personal_info_section .personal_info_progress_row {
    margin-bottom: 35px;
}

.personal_info_section .personal_info_progress {
    width: 100%;
    height: 3px;
    background-color: #eeeeee;
    border-radius: 50px;
    overflow: hidden;
}

.personal_info_section .personal_info_progress_fill {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--bg_color_4);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.personal_info_section .personal_info_step {
    font-family: var(--inter_regular);
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: var(--bg_color_5);
    white-space: nowrap;
    text-align: center;
}

.personal_info_section .personal_info_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.personal_info_section .personal_info_subtitle {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #555555;
    margin-bottom: 35px;
}

.personal_info_section .personal_info_input {
    width: 100%;
    background-color: #fbfbfb;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    margin-bottom: 18px;
    overflow: hidden;
}

.personal_info_section .personal_info_field,
.personal_info_section .personal_info_select_field {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    background-color: transparent;
    padding: 12px 18px;
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: var(--text_color_1);
}

.personal_info_section .personal_info_field::placeholder,
.personal_info_section .personal_info_textarea::placeholder {
    color: #a7a7a7;
}

.personal_info_section .personal_info_select_field {
    color: #a7a7a7;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.personal_info_section .personal_info_select {
    position: relative;
}

.personal_info_section .personal_info_select::after {
    content: "";
    position: absolute;
    right: 21px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #6d6d6d;
    border-bottom: 1.5px solid #6d6d6d;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.personal_info_section .personal_info_note {
    gap: 5px;
    margin: 35px 0 14px 0;
    color: #008EFF;
    display: flex;
    justify-content: start;
    align-items: center;
}

.personal_info_section .personal_info_note_icon {
    flex: 0 0 auto;
    color: #008EFF;
    margin-top: 2px;
}

.personal_info_section .personal_info_note_text {
    font-family: var(--inter_regular);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    color: #008EFF;
}

.personal_info_section .personal_info_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 26px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    border-radius: 10px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
}

.personal_info_section .personal_info_btn:hover {
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
}

.personal_info_section .personal_info_btn_arrow {
    font-size: 18px;
    margin-left: 10px;
}

.personal_info_section .goback_part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.personal_info_section .goback_part a {
    font-family: var(--inter_regular);
    color: var(--text_color_3);
    font-size: var(--fs_14);
    text-decoration: none;
    transition: color 0.3s ease;
}

.personal_info_section .goback_part a:hover {
    color: var(--bg_color_5);
}

.personal_info_section .record_upload_tabs {
    margin-bottom: 36px;
}

.personal_info_section .record_tab_btn {
    padding: 12px 25px;
    border: 1px solid #d9d9d9;
    background-color: transparent;
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--text_color_1);
}

.personal_info_section .record_tab_btn_first {
    border-radius: 4px 0 0 4px;
}

.personal_info_section .record_tab_btn_last {
    border-radius: 0 4px 4px 0;
}

.personal_info_section .record_tab_btn.active {
    background-color: var(--text_color_1);
    color: #ffffff;
    border-color: var(--text_color_1);
}

.personal_info_section .upload_record_box {
    width: 100%;
    min-height: 180px;
    border: 1px dashed #d9d9d9;
    border-radius: 5px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    padding: 22px 15px;
}

.personal_info_section .upload_icon {
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.personal_info_section .upload_record_title {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.personal_info_section .upload_record_text {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    color: #9b9b9b;
    margin: 0;
}

.personal_info_section .record_manual_group {
    margin-bottom: 15px;
}

.personal_info_section .record_manual_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: var(--fs_22);
    line-height: 1;
    font-weight: 400;
    color: var(--bg_color_5);
    margin-bottom: 18px;
}

.personal_info_section .record_textarea_box {
    min-height: 120px;
}

.personal_info_section .personal_info_textarea {
    width: 100%;
    height: 100%;
    resize: none;
    border: 0;
    outline: none;
    background-color: transparent;
    padding: 12px 18px;
    font-family: var(--inter_regular);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--text_color_1);
}

.personal_info_section .success_check_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.personal_info_section .success_check_icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #2ca5ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 9px rgba(44, 165, 255, 0.18),
        0 0 0 17px rgba(44, 165, 255, 0.08);
}

.personal_info_section .case_fee_card_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 18px;
    overflow: visible;
}

.personal_info_section .case_fee_card_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg,
            rgba(44, 165, 255, 0),
            rgba(44, 165, 255, 0.9),
            rgba(44, 165, 255, 0));
    box-shadow:
        0 4px 14px rgba(44, 165, 255, 0.55),
        0 10px 24px rgba(44, 165, 255, 0.16);
    border-radius: 50px;
    z-index: 3;
}

.personal_info_section .case_fee_card_wrap::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 50%;
    width: min(360px, 86%);
    height: 30px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at top,
            rgba(44, 165, 255, 0.18),
            rgba(44, 165, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.personal_info_section .case_fee_receipt_card {
    width: 100%;
    max-width: 330px;
    background-color: #f0f8ff;
    box-shadow:
        0 14px 30px rgba(44, 165, 255, 0.12),
        0 -8px 18px rgba(44, 165, 255, 0.08);
    padding: 20px 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(-22px);
    clip-path: inset(0 0 100% 0);
    transform-origin: top center;
    transition:
        opacity 0.25s ease,
        transform 0.9s cubic-bezier(0.2, 0.85, 0.25, 1),
        clip-path 1.05s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.personal_info_section .case_fee_receipt_card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 8px;
    background:
        radial-gradient(circle at 8px -1px, transparent 8px, #f0f8ff 8.5px) repeat-x;
    background-size: 16px 8px;
}

.personal_info_section .case_fee_receipt_card.is_receipt_visible {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.personal_info_section .receipt_intro {
    margin: 0 auto;
    font-family: var(--inter_regular);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    color: #606366;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
}

.personal_info_section .receipt_divider {
    width: 100%;
    border-top: 1px dashed #bcc9d3;
    margin: 25px 0 24px;
}

.personal_info_section .receipt_bottom_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.personal_info_section .receipt_fee_content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.personal_info_section .receipt_fee_title {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--bg_color_5);
    margin-bottom: 10px;
}

.personal_info_section .receipt_fee_price {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    color: var(--bg_color_5);
    margin-bottom: 0;
    white-space: nowrap;
}

.personal_info_section .receipt_doc_icon {
    margin-right: -20px;
    filter: drop-shadow(0px 14px 24px rgba(0, 0, 0, 0.15));
    transform: matrix(1, -0.08, 0.11, 0.99, 0, 0);
    filter: drop-shadow(0px 14px 24px rgba(0, 0, 0, 0.15));
    transform: matrix(1, -0.08, 0.11, 0.99, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .personal_info_section .case_fee_receipt_card {
        transition: none;
    }
}














































.dashboard_page {
    width: 100%;
    min-height: 100vh;
    background-color: #F0F2F5;
}

.dashboard_page .dashboard_sidebar {
    height: 100%;
    background-color: var(--bg_color_1);
    /* position: sticky; */
    top: 0;
    overflow-y: auto;
}

.dashboard_page .dashboard_sidebar_inner {
    min-height: 100vh;
    padding: 30px 25px 30px 25px;
    display: flex;
    flex-direction: column;
}

.dashboard_page .dashboard_sidebar::-webkit-scrollbar,
.dashboard_page .dashboard_offcanvas_body::-webkit-scrollbar {
    width: 4px;
}

.dashboard_page .dashboard_sidebar::-webkit-scrollbar-thumb,
.dashboard_page .dashboard_offcanvas_body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 84, 86, 0.25);
    border-radius: 20px;
}

.dashboard_page .dashboard_logo {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 30px;
    line-height: 1;
    color: var(--text_color_1);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 55px;
}

.dashboard_page .dashboard_logo span {
    color: var(--bg_color_5);
    font-family: var(--FeatureDisplay_Regular);
}

.dashboard_page .dashboard_logo:hover {
    color: var(--text_color_1);
}

.dashboard_page .dashboard_menu_wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dashboard_page .dashboard_menu_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.dashboard_page .dashboard_account_menu {
    margin-top: auto;
}

.dashboard_page .dashboard_menu_label {
    font-family: var(--inter_regular);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #005456;
    margin-bottom: 14px;
}

.dashboard_page .dashboard_menu_item {
    min-height: 40px;
    padding: 0 10px 0 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.1;
    color: #090909;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.25s ease;
}

.dashboard_page .dashboard_menu_item:hover {
    background-color: rgba(0, 84, 86, 0.08);
    color: #005456;
}

.dashboard_page .dashboard_menu_item.active {
    background-color: #005456;
    color: #ffffff;
}

.dashboard_page .dashboard_menu_item.active span {
    color: #ffffff;
}

.dashboard_page .menu_icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    color: #090909;
}

.dashboard_page .menu_icon svg {
    width: 22px;
    height: 22px;
    display: block;
    color: currentColor;
}

/* Default black SVG */
.dashboard_page .dashboard_menu_item .menu_icon svg,
.dashboard_page .dashboard_menu_item .menu_icon svg *,
.dashboard_page .dashboard_menu_item .menu_icon path,
.dashboard_page .dashboard_menu_item .menu_icon g {
    color: currentColor;
}

/* Stroke icons */
.dashboard_page .dashboard_menu_item .menu_icon svg[fill="none"],
.dashboard_page .dashboard_menu_item .menu_icon svg[fill="none"] * {
    fill: none;
    stroke: currentColor;
}

/* Filled icons */
.dashboard_page .dashboard_menu_item .menu_icon svg:not([fill="none"]),
.dashboard_page .dashboard_menu_item .menu_icon svg:not([fill="none"]) * {
    fill: currentColor;
}

/* Hover icon */
.dashboard_page .dashboard_menu_item:hover .menu_icon {
    color: #005456;
}

/* Active icon white */
.dashboard_page .dashboard_menu_item.active .menu_icon {
    color: #ffffff;
}

.dashboard_page .dashboard_menu_item.active .menu_icon svg,
.dashboard_page .dashboard_menu_item.active .menu_icon svg *,
.dashboard_page .dashboard_menu_item.active .menu_icon path,
.dashboard_page .dashboard_menu_item.active .menu_icon g {
    color: #ffffff;
    fill: currentColor;
    stroke: currentColor;
}

.dashboard_page .dashboard_menu_item.active .menu_icon svg[fill="none"],
.dashboard_page .dashboard_menu_item.active .menu_icon svg[fill="none"] * {
    fill: none;
    stroke: currentColor;
}

.dashboard_page .dashboard_main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard_page .dashboard_top_notice {
    min-height: 50px;
    background-color: #F3F1EF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px 8px 20px;
    position: relative;
}

.dashboard_page .dashboard_notice_center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.dashboard_page .dashboard_notice_center span {
    font-family: var(--inter_regular);
    font-size: 14px;
    color: #111111;
}

.dashboard_page .dashboard_notice_center a {
    min-height: 30px;
    padding: 0 16px 0 16px;
    border-radius: 999px;
    border: 1px solid #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--inter_regular);
    font-size: 14px;
    color: #111111;
    text-decoration: none;
    transition: 0.25s ease;
}

.dashboard_page .dashboard_notice_center a:hover {
    background-color: #111111;
    color: #ffffff;
}

.dashboard_page .dashboard_mobile_toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: var(--bg_color_1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.dashboard_page .dashboard_mobile_toggle svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #111111;
}

.dashboard_page .dashboard_content {
    width: 100%;
    flex: 1;
    padding: 40px 30px 46px 30px;
}

.dashboard_page .dashboard_tab_content {
    display: none;
}

.dashboard_page .dashboard_tab_content.active {
    display: block;
}

.dashboard_page .dashboard_welcome_card,
.dashboard_page .dashboard_action_card,
.dashboard_page .dashboard_panel {
    background-color: var(--bg_color_1);
    border-radius: 12px;
}

.dashboard_page .dashboard_welcome_card {
    min-height: 108px;
    padding: 20px 22px 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard_page .welcome_left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard_page .user_avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #111111;
    color: #ffffff;
    font-family: var(--FeatureDisplay_Regular);
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard_page .dashboard_welcome_card h1 {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 22px;
    line-height: 1.15;
    color: #005456;
    margin-bottom: 6px;
}

.dashboard_page .dashboard_welcome_card p {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.32;
    color: #5f5f5f;
    margin-bottom: 0;
}

.dashboard_page .application_status {
    min-height: 36px;
    padding: 0 18px 0 18px;
    border-radius: 999px;
    background-color: #edf3f9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-family: var(--inter_regular);
    font-size: 14px;
    color: #0085ff;
}

.dashboard_page .application_status span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0085ff;
    display: block;
}

.dashboard_page .dashboard_action_row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    margin-bottom: 20px;
}

.dashboard_page .dashboard_action_card {
    height: 100%;
    min-height: 242px;
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard_page .dashboard_action_card h2,
.dashboard_page .dashboard_panel h2,
.dashboard_page .empty_research_box h2 {
    font-family: var(--FeatureDisplay_Regular);
    color: #111111;
    font-weight: 400;
    margin-bottom: 14px;
}

.dashboard_page .dashboard_action_card h2 {
    font-size: 23px;
    line-height: 1.15;
}

.dashboard_page .dashboard_action_card p {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.25;
    color: #666666;
    margin-bottom: 0;
}

.dashboard_page .dashboard_yellow_btn {
    width: 100%;
    min-height: 46px;
    border-radius: 6px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--inter_regular);
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

.dashboard_page .dashboard_yellow_btn span {
    font-size: 21px;
    line-height: 1;
}

.dashboard_page .dashboard_yellow_btn:hover {
    background-color: #e8aa00;
    color: var(--text_color_1);
}

.dashboard_page .dashboard_panel {
    padding: 20px 20px 20px 20px;
    margin-bottom: 20px;
}

.dashboard_page .dashboard_panel h2 {
    font-size: 24px;
    line-height: 1.15;
}

.dashboard_page .application_divider {
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    margin-bottom: 18px;
}

.dashboard_page .application_info_row {
    --bs-gutter-y: 14px;
    margin-bottom: 18px;
}

.dashboard_page .info_label {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.2;
    color: #717171;
    margin-bottom: 5px;
}

.dashboard_page .info_value {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 0;
}

.dashboard_page .uploaded_records {
    display: flex;
    flex-direction: column;
}

.dashboard_page .record_thumb_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard_page .record_thumb_wrap img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.dashboard_page .record_thumb {
    width: 74px;
    height: 74px;
    border-radius: 7px;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    background-color: #f1f1f1;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.dashboard_page .empty_research_box {
    min-height: 132px;
    border: 1px solid #dedede;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 24px 18px 24px 18px;
}

.dashboard_page .empty_icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f0f1f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: 20px;
    margin-bottom: 8px;
}

.dashboard_page .empty_icon svg {
    width: 20px;
    height: 20px;
    display: block;
    color: currentColor;
}

.dashboard_page .empty_research_box h2 {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.dashboard_page .empty_research_box p {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 0;
}

.dashboard_page .dashboard_content_text {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 20px;
}

.dashboard_page .application_detail_box {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 18px 18px 18px 18px;
}

.dashboard_page .record_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.dashboard_page .record_list_item {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 12px 12px 12px 12px;
}

.dashboard_page .record_list_item h3,
.dashboard_page .consultation_box h3,
.dashboard_page .research_plan_card h3,
.dashboard_page .case_progress_item h3 {
    font-family: var(--inter_regular);
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 5px;
}

.dashboard_page .record_list_item p,
.dashboard_page .consultation_box p,
.dashboard_page .research_plan_card p,
.dashboard_page .case_progress_item p {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 0;
}

.dashboard_page .consultation_box {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 22px 22px 22px 22px;
    margin-top: 20px;
}

.dashboard_page .consultation_btn {
    padding: 0 24px 0 24px;
    margin-top: 18px;
}

.dashboard_page .research_plan_row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.dashboard_page .research_plan_card {
    height: 100%;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
}

.dashboard_page .research_plan_card p {
    margin-bottom: 22px;
}

.dashboard_page .research_plan_card .dashboard_yellow_btn {
    margin-top: auto;
}

.dashboard_page .case_progress_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard_page .case_progress_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dashboard_page .case_progress_item>span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #d8d8d8;
    margin-top: 4px;
    flex-shrink: 0;
}

.dashboard_page .case_progress_item.active>span {
    background-color: #005456;
    box-shadow: 0 0 0 5px rgba(0, 84, 86, 0.12);
}

.dashboard_page .settings_box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard_page .settings_item {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 14px 16px 14px 16px;
}

/* Bootstrap Offcanvas Custom */
.dashboard_page .dashboard_offcanvas {
    background-color: var(--bg_color_1);
}

.dashboard_page .dashboard_offcanvas_header {
    padding: 28px 22px 10px 22px;
    align-items: flex-start;
}

.dashboard_page .dashboard_offcanvas_header .dashboard_logo {
    margin-bottom: 0;
}

.dashboard_page .dashboard_offcanvas_close {
    box-shadow: none;
}

.dashboard_page .dashboard_offcanvas_body {
    padding: 24px 22px 28px 22px;
    overflow-y: auto;
}

.dashboard_page .dashboard_page_title_wrap {
    margin-bottom: 30px;
}

.dashboard_page .dashboard_page_title_wrap h1 {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 30px;
    line-height: 1.15;
    color: #005456;
    font-weight: 400;
    margin-bottom: 0;
}

.dashboard_page .my_application_status_card {
    min-height: 78px;
    background-color: var(--bg_color_1);
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard_page .my_application_status_card h2,
.dashboard_page .my_application_card h2,
.dashboard_page .documents_records_card h2,
.dashboard_page .documents_protected_card h2,
.dashboard_page .consultation_profile_panel h2,
.dashboard_page .consultation_time_panel h2,
.dashboard_page .research_price_card h2 {
    font-family: var(--FeatureDisplay_Regular);
    font-weight: 400;
    color: var(--text_color_1);
    margin-bottom: 0;
}

.dashboard_page .my_application_status_card h2 {
    font-size: 24px;
    line-height: 1.15;
}

.dashboard_page .my_application_row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.dashboard_page .my_application_card {
    height: 100%;
    background-color: var(--bg_color_1);
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
}

.dashboard_page .my_application_card h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.dashboard_page .my_application_field {
    min-height: 42px;
    border: 1px solid #e6e6e6;
    background-color: #fbfbfb;
    border-radius: 4px;
    padding: 0 20px 0 20px;
    display: flex;
    align-items: center;
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.2;
    color: var(--text_color_1);
    margin-bottom: 20px;
}

.dashboard_page .my_application_inner_row {
    --bs-gutter-x: 10px;
}

.dashboard_page .my_application_upload_box {
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    height: 100%;
}

.dashboard_page .my_application_upload_box p {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.2;
    color: #0085ff;
    margin-bottom: 18px;
}

.dashboard_page .my_application_thumb_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px dashed #dddddd;
    padding-top: 12px;
}

.dashboard_page .my_application_thumb {
    width: 150px;
    height: 92px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.dashboard_page .my_application_note_box {
    min-height: 155px;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.18;
    color: var(--text_color_1);
}

.dashboard_page .documents_records_row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    margin-bottom: 20px;
}

.dashboard_page .documents_records_card {
    min-height: 415px;
    background-color: var(--bg_color_1);
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
}

.dashboard_page .documents_records_inner {
    height: 100%;
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
}

.dashboard_page .documents_records_card h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.dashboard_page .document_uploaded_date {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.2;
    color: #0085ff;
    margin-bottom: 12px;
}

.dashboard_page .document_divider {
    width: 100%;
    border-top: 1px dashed #dddddd;
    margin-bottom: 14px;
}

.dashboard_page .document_file_name {
    font-family: var(--inter_regular);
    font-size: 14px;
    line-height: 1.2;
    color: var(--bg_color_4);
    margin-bottom: 10px;
}

.dashboard_page .document_file_name span {
    color: var(--bg_color_4);
    margin-right: 4px;
}

.dashboard_page .document_large_preview {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    background-position: center;
    background-size: cover;
}

.dashboard_page .documents_support_row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dashboard_page .document_file_input {
    display: none;
}

.dashboard_page .document_upload_box {
    cursor: pointer;
}

.dashboard_page .document_small_preview {
    width: 150px;
    height: 95px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    background-position: center;
    background-size: cover;
}

.dashboard_page .document_upload_box {
    width: 150px;
    height: 95px;
    border: 1px dashed #bcbcbc;
    background-color: transparent;
    border-radius: 8px;
    font-family: var(--inter_regular);
    font-size: 13px;
    line-height: 1.2;
    color: var(--text_color_1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 10px 10px 10px 10px;
}

.dashboard_page .document_upload_box span {
    width: 24px;
    height: 24px;
    color: var(--text_color_1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.dashboard_page .document_upload_box svg {
    width: 24px;
    height: 24px;
    display: block;
}

.dashboard_page .documents_protected_card {
    background-color: var(--bg_color_1);
    border-radius: 12px;
    padding: 24px 20px 24px 20px;
}

.dashboard_page .documents_protected_inner {
    border: 1px solid #dedede;
    border-radius: 10px;
    padding: 10px 28px 10px 28px;
    min-height: 165px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.dashboard_page .documents_protected_card h2 {
    font-size: 24px;
    line-height: 1.15;
    color: #0085ff;
    margin-bottom: 8px;
}

.dashboard_page .documents_protected_card p {
    font-family: var(--inter_regular);
    font-size: 17px;
    line-height: 1.25;
    color: #6d6d6d;
    margin-bottom: 0;
}

.dashboard_page .research_banner {
    min-height: 120px;
    border-radius: 12px;
    padding: 20px 30px 20px 30px;
    margin-bottom: 22px;
    background-image: url(../image/research_banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.dashboard_page .research_banner p {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 24px;
    line-height: 1.2;
    color: var(--bg_color_1);
    margin-bottom: 0;
}

.dashboard_page .research_cards_row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.dashboard_page .research_price_card {
    height: 100%;
    min-height: 425px;
    background-color: #E5E5E6;
    border-radius: 12px;
    padding: 20px 20px 22px 20px;
}

.dashboard_page .research_price_card.active {
    background-color: #E5E5E6;
}

.dashboard_page .research_price_top {
    background-color: var(--bg_color_1);
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
}

.dashboard_page .research_price_card.active .research_price_top {
    background-color: var(--bg_color_4);
}

.dashboard_page .research_price_card h2 {
    font-family: var(--inter_regular);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.dashboard_page .research_price_card p {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.2;
    color: #555555;
    margin-bottom: 22px;
}

.dashboard_page .research_price_card.active p {
    color: #555555;
}

.dashboard_page .research_price_divider {
    width: 100%;
    border-top: 1px dashed #cfcfcf;
    margin-bottom: 26px;
}

.dashboard_page .research_price_action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard_page .research_price_action h3 {
    font-family: var(--FeatureDisplay_Regular);
    font-size: 48px;
    line-height: 1;
    color: var(--text_color_1);
    margin-bottom: 0;
}

.dashboard_page .research_start_btn {
    width: 100%;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 6px;
    background-color: var(--bg_color_4);
    color: var(--text_color_1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--inter_regular);
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s ease;
}

.dashboard_page .research_price_card.active .research_start_btn {
    background-color: var(--text_color_1);
    color: var(--bg_color_1);
}

.dashboard_page .research_features {
    padding: 30px 20px 0 20px;
}

.dashboard_page .research_features p {
    font-size: 16px;
    color: #696969;
    margin-bottom: 14px;
}

.dashboard_page .research_features ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.dashboard_page .research_features ul li {
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1.35;
    color: var(--text_color_1);
}

.dashboard_page .consultation_page_container {
    margin-left: -120px;
    margin-right: -120px;
}

.dashboard_page .consultation_title_wrap h1 {
    color: var(--text_color_1);
}

.dashboard_page .consultation_scheduler_card {
    background-color: var(--bg_color_1);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard_page .consultation_profile_panel,
.dashboard_page .consultation_calendar_panel,
.dashboard_page .consultation_time_panel {
    min-height: 540px;
    padding: 24px 20px 24px 20px;
}

.dashboard_page .consultation_profile_panel {
    border-right: 1px solid #e6e6e6;
}

.dashboard_page .consultation_time_panel {
    border-left: 1px solid #e6e6e6;
}

.dashboard_page .consultation_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #cfcfcf 0 18%, #1b2940 19% 35%, #eeeeee 36% 100%);
    margin-bottom: 8px;
}

.dashboard_page .consultation_profile_panel h3 {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text_color_1);
    margin-bottom: 16px;
}

.dashboard_page .consultation_profile_panel h2 {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.dashboard_page .consultation_profile_panel p {
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.22;
    color: #666666;
    margin-bottom: 20px;
}

.dashboard_page .consultation_profile_panel ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.dashboard_page .consultation_profile_panel ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1.2;
    color: var(--text_color_1);
    margin-bottom: 12px;
}

.dashboard_page .consultation_calendar_header h2 {
    font-family: var(--inter_regular);
    font-size: 22px;
    line-height: 1.2;
    color: var(--text_color_1);
    font-weight: 600;
    margin-bottom: 24px;
}

.dashboard_page .consultation_calendar_header h2 span {
    color: #777777;
    font-weight: 400;
}

/* .dashboard_page .consultation_week_row {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.dashboard_page .consultation_week_row span {
    width: 14.285%;
    text-align: center;
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1;
    color: var(--text_color_1);
    font-weight: 700;
}

.dashboard_page .consultation_days_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.dashboard_page .consultation_day {
    width: 13.7%;
    height: 70px;
    border: none;
    border-radius: 6px;
    background-color: #eeeeee;
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
} */

.dashboard_page .consultation_calendar_grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.dashboard_page .consultation_calendar_grid .consultation_week_name {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--inter_regular);
    font-size: 15px;
    line-height: 1;
    color: var(--text_color_1);
    font-weight: 600;
}

.dashboard_page .consultation_calendar_grid .consultation_day {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 6px;
    background-color: #eeeeee;
    color: var(--text_color_1);
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dashboard_page .consultation_calendar_grid .consultation_day.disabled {
    background-color: transparent;
    color: #b8b8b8;
}

.dashboard_page .consultation_calendar_grid .consultation_day.active {
    background-color: #0d8df2;
    color: var(--bg_color_1);
}

.dashboard_page .consultation_calendar_grid .consultation_day.next_month span {
    position: absolute;
    top: 7px;
    left: 8px;
    font-size: 12px;
    color: #0085ff;
}

.dashboard_page .consultation_day.disabled {
    background-color: transparent;
    color: #b8b8b8;
}

.dashboard_page .consultation_day.active {
    background-color: #0d8df2;
    color: var(--bg_color_1);
}

.dashboard_page .consultation_day.next_month span {
    position: absolute;
    top: 7px;
    left: 8px;
    font-size: 12px;
    color: #0085ff;
}

.dashboard_page .consultation_time_panel h2 {
    font-family: var(--inter_regular);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 26px;
}

.dashboard_page .consultation_time_btn {
    width: 100%;
    min-height: 38px;
    border: 1px solid #dcdcdc;
    background-color: #f8f8f8;
    border-radius: 5px;
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1;
    color: var(--text_color_1);
    margin-bottom: 13px;
}

.dashboard_page .consultation_time_btn.selected {
    background-color: #dddddd;
}

.dashboard_page .consultation_confirm_wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.dashboard_page .consultation_confirm_btn {
    min-height: 42px;
    min-width: 255px;
    border: none;
    border-radius: 5px;
    background-color: #b2b2b2;
    color: var(--bg_color_1);
    font-family: var(--inter_regular);
    font-size: 16px;
    line-height: 1;
    padding: 0 22px 0 22px;
}