.guidePageContent {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.guidePageSection {
    width: 100%;    
    overflow: hidden;
    border-radius: 24px;
    background-color: var(--sections-background);
}

.guidePageSection .guidePageSection-header {
    padding: 48px 32px 48px 32px;
    position: relative;
    display: flex;
    align-items: start;
    border-radius: 24px;
    width: 100%;
    will-change: padding-bottom;
    transition: .5s padding-bottom;
}

.guidePageSection .guidePageSection-header::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 32px;
    width: calc(100% - 32px * 2);
    height: 1px;
    background-color: transparent;
}

.guidePageSection .guidePageSection-header .section-icon {
    padding-top: 5px;
    color: var(--primary);
}

.guidePageSection .guidePageSection-header .section-title {
    color: var(--blue-100);
}

.guidePageSection .guidePageSection-header .section-arrow {
    color: var(--grey-20);
    transform: rotate(0deg);
    will-change: transform;
    transition: .5s transform;
}

.guidePageSection .guidePageSection-content {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 48px;
    padding: 0 64px 0 64px;
    border-bottom-right-radius: 24px;
    border-bottom-right-radius: 24px;
    max-height: 0;
    overflow: hidden;
    will-change: padding, max-height;
    transition: .5s padding, max-height;
}

.guidePageSection.is-open .guidePageSection-header {
    padding-bottom: 32px;
}

.guidePageSection.is-open .guidePageSection-header::after {
    background-color: #D1D6EB;
}

.guidePageSection.is-open .guidePageSection-header .section-arrow {
    transform: rotate(180deg);
}

.guidePageSection.is-open .guidePageSection-content {
    padding: 32px 64px 48px 64px;
    max-height: 10000px;
}

@media only screen and (max-width: 800px) {
    .mainContentHero .button {
        width: 100%;
    }

    .guidePageSection .guidePageSection-header {
        padding: 32px 24px 32px 24px;
    }

    .guidePageSection.is-open .guidePageSection-header {
        padding-bottom: 24px;
    }

    .guidePageSection.is-open .guidePageSection-content {
        padding: 24px; 
    }
}

.background-blue-60 a {
    color: #66d3f5;
}

/* complaint process block scheme */

.complaint-process-block-scheme {
    width: 100%;
    height: 800px;
    position: relative;
    color: #fff;
    --level-height: 53px;
    --level-gap: 40px;
    --block-width: 248px;
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme {
        height: 900px;
    }
}

.complaint-process-block-scheme .scheme-block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--level-height);
    width: 248px;
    border-radius: 16px;
    background-color: var(--primary);
    padding: 16px;
    text-align: center;

    /* position */
    position: absolute;
    left: calc(50% - 15px - var(--block-width) / 2);
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .scheme-block {
        left: calc(50% - var(--block-width) / 2);
    }

    .complaint-process-block-scheme .scheme-block.scheme-block-5,
    .complaint-process-block-scheme .scheme-block.scheme-block-6,
    .complaint-process-block-scheme .scheme-block.scheme-block-7,
    .complaint-process-block-scheme .scheme-block.scheme-block-8 {
        width: calc(50% - 10px);
    }
}

.complaint-process-block-scheme .scheme-block span {
    color: inherit;
    line-height: 21px;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.complaint-process-block-scheme .scheme-block .scheme-block-arrow {
    --arrow-color: var(--blue-100);
    position: absolute;
    top: calc(var(--level-height) + 8px);
    left: calc(50%);
    height: calc(var(--level-gap) - 8px * 2);
    width: 3px;
    color: var(--arrow-color);
    font-size: 8px;
    transform: translateX(-50%);
}

.complaint-process-block-scheme .scheme-block .scheme-block-arrow i {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-45%);
}

.complaint-process-block-scheme .scheme-block .scheme-block-arrow::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--arrow-color);
    border-radius: 1px;
    transform: translateX(-50%);
}

.complaint-process-block-scheme .scheme-block .scheme-block-arrow.has-text::after {
    top: 20px;
}

.complaint-process-block-scheme .scheme-block .scheme-block-arrow.has-text .scheme-block-arrow-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 18px;
    font-size: 14px;
    color: var(--arrow-color);
    width: fit-content;
    font-weight: 700;
}

.complaint-process-block-scheme .scheme-block.scheme-block-2 .scheme-block-arrow.side-arrow,
.complaint-process-block-scheme .scheme-block.scheme-block-3 .scheme-block-arrow.side-arrow {
    --arrow-color: var(--grey-30);
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: calc(var(--level-gap) - 8px * 2);
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .scheme-block.scheme-block-2 .scheme-block-arrow.side-arrow,
    .complaint-process-block-scheme .scheme-block.scheme-block-3 .scheme-block-arrow.side-arrow {
        top: calc(var(--level-height) + 16px) !important;
        transform: translateX(-50%) rotate(90deg) !important;
        left: calc(50%) !important;
    }
}

.complaint-process-block-scheme .scheme-block.scheme-block-2 .scheme-block-arrow.side-arrow i,
.complaint-process-block-scheme .scheme-block.scheme-block-3 .scheme-block-arrow.side-arrow i {
    right: -3px;
    left: auto;
    bottom: auto;
    top: 50%;;
    transform: translateY(-50%) rotate(-90deg);
}

.complaint-process-block-scheme .scheme-block.scheme-block-2 .scheme-block-arrow.side-arrow::after,
.complaint-process-block-scheme .scheme-block.scheme-block-3 .scheme-block-arrow.side-arrow::after {
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.complaint-process-block-scheme .scheme-block.grey {
    border: 1px dashed rgba(133, 144, 157, 0.2);
    background-color: transparent;
    color: var(--grey-30);
}

.complaint-process-block-scheme .scheme-block.dark {
    background-color: var(--blue-70);
}

.complaint-process-block-scheme .scheme-block.blue {
    background-color: var(--blue-30);
}

.complaint-process-block-scheme .scheme-block.violet {
    background-color: var(--violet);
}

.complaint-process-block-scheme .scheme-block.white {
    background-color: var(--grey-0);
    color: var(--blue-100);
}

/* leveling */

.complaint-process-block-scheme .level {
    --level-count: 0;
    top: calc(var(--level-height) * var(--level-count) + var(--level-gap) * var(--level-count));
}

.complaint-process-block-scheme .column-1 {
    left: calc(50% - var(--block-width) - 62px);
}

.complaint-process-block-scheme .column-2 {
    left: calc(50% + 35px);
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .column-2 {
        left: calc(50% + 10px);
    }
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .column-1 {
        left: 0;
    }
}

.complaint-process-block-scheme .level-1 {
    --level-count: 0;
}

.complaint-process-block-scheme .level-2 {
    --level-count: 1;
}

.complaint-process-block-scheme .level-3 {
    --level-count: 2;
}

.complaint-process-block-scheme .level-4 {
    --level-count: 3;
}

.complaint-process-block-scheme .level-5 {
    --level-count: 4;
}

.complaint-process-block-scheme .level-6 {
    --level-count: 5;
}

.complaint-process-block-scheme .level-7 {
    --level-count: 6;
}

.complaint-process-block-scheme .level-8 {
    --level-count: 7;
}

.complaint-process-block-scheme .level-9 {
    --level-count: 8;
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .mobile-level-1 {
        --level-count: 0 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-2 {
        --level-count: 1 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-3 {
        --level-count: 2 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-4 {
        --level-count: 3 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-5 {
        --level-count: 4 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-6 {
        --level-count: 5 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-7 {
        --level-count: 6 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-8 {
        --level-count: 7 !important;
    }
    
    .complaint-process-block-scheme .mobile-level-9 {
        --level-count: 8 !important;
    }

    .complaint-process-block-scheme .mobile-level-10 {
        --level-count: 9 !important;
    }
}

/* block positioning */

.complaint-process-block-scheme .scheme-block.scheme-block-2-side,
.complaint-process-block-scheme .scheme-block.scheme-block-3-side {
    left: calc(50% - 15px + var(--block-width) / 2 + var(--level-gap));
    width: 130px;
    padding: 8px 16px;
    white-space: nowrap;
}

@media only screen and (max-width: 800px) {
    .complaint-process-block-scheme .scheme-block.scheme-block-2 .scheme-block-arrow,
    .complaint-process-block-scheme .scheme-block.scheme-block-3 .scheme-block-arrow {
        top: calc(var(--level-height) * 2 + var(--level-gap) + 8px);
    }

    .complaint-process-block-scheme .scheme-block.scheme-block-2-side,
    .complaint-process-block-scheme .scheme-block.scheme-block-3-side {
        left: calc(50% - var(--block-width) / 2);
        width: var(--block-width);
        height: var(--level-height);
        padding: 4px 16px;
    }
}

.scheme-block.scheme-block-4 .scheme-block-arrow.left-arrow,
.scheme-block.scheme-block-4 .scheme-block-arrow.right-arrow {
    height: calc(var(--level-gap) + var(--level-height) / 2 - 8px);
    top: calc(var(--level-height) / 2);
    width: 18%;
    transform: none;
    border-top: 1px solid var(--arrow-color);
}

.scheme-block.scheme-block-4 .scheme-block-arrow.left-arrow::after,
.scheme-block.scheme-block-4 .scheme-block-arrow.right-arrow::after {
    content: none;
}

.scheme-block.scheme-block-4 .scheme-block-arrow.left-arrow {
    left: auto;
    right: 102%;
    border-left: 1px solid var(--arrow-color);
    border-top-left-radius: 25px;
}

.scheme-block.scheme-block-4 .scheme-block-arrow.left-arrow i {
    left: 0;
    transform: translateX(-60%);
}

.scheme-block.scheme-block-4 .scheme-block-arrow.right-arrow {
    left: 102%;
    right: auto;
    border-right: 1px solid var(--arrow-color);
    border-top-right-radius: 25px;
}

.scheme-block.scheme-block-4 .scheme-block-arrow.right-arrow i {
    right: 0;
    left: auto;
    transform: translateX(60%);
}

.scheme-block.scheme-block-4 .scheme-block-arrow.bottom-arrow {
    display: none;
}

@media only screen and (max-width: 800px) {
    .scheme-block.scheme-block-4 .scheme-block-arrow.bottom-arrow {
        display: block;
    }

    .scheme-block.scheme-block-4 .scheme-block-arrow.left-arrow,
    .scheme-block.scheme-block-4 .scheme-block-arrow.right-arrow {
        display: none;
    }

    .scheme-block.scheme-block-4 .scheme-block-arrow.bottom-arrow::after {
        content: none;
    }

    .scheme-block.scheme-block-4 .scheme-block-arrow.bottom-arrow {
        transform: translateX(-92.5px);
    }
}

@media only screen and (max-width: 800px) {
    .scheme-block.scheme-block-5,
    .scheme-block.scheme-block-6,
    .scheme-block.scheme-block-7 {
        padding: 5px 16px;
    }

    .scheme-block.scheme-block-5 span,
    .scheme-block.scheme-block-6 span,
    .scheme-block.scheme-block-7 span {
        line-height: 14px;
        font-size: 14px;
    }
}

.scheme-block.scheme-block-7 .scheme-block-arrow::after,
.scheme-block.scheme-block-8 .scheme-block-arrow::after {
    content: none;
}

@media only screen and (max-width: 800px) {
    .scheme-block.scheme-block-7 .scheme-block-arrow:first-of-type:after,
    .scheme-block.scheme-block-8 .scheme-block-arrow:first-of-type:after {
        content: "";
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow,
    .scheme-block.scheme-block-8 .scheme-block-arrow {
        border: none !important;
    }
}

.scheme-block.scheme-block-7 .scheme-block-arrow,
.scheme-block.scheme-block-8 .scheme-block-arrow {
    top: calc(100% + 24px);
    height: calc(var(--level-gap));
    transform: none;
    width: 40px;
}

.scheme-block.scheme-block-7 .scheme-block-arrow .scheme-block-arrow-text,
.scheme-block.scheme-block-8 .scheme-block-arrow .scheme-block-arrow-text {
    top: -20px !important;
}

.scheme-block.scheme-block-7 .scheme-block-arrow i,
.scheme-block.scheme-block-8 .scheme-block-arrow i {
    bottom: -4px;
    left: 100%;
    transform: translateX(-50%) rotate(-90deg);
}

.scheme-block.scheme-block-8 .scheme-block-arrow i {
    left: 0;
    transform: translateX(-50%) rotate(90deg);
}

.scheme-block.scheme-block-7 .scheme-block-arrow {
    border-left: 1px solid var(--arrow-color);
    border-bottom: 1px solid var(--arrow-color);
    border-bottom-left-radius: 25px;
}

.scheme-block.scheme-block-8 .scheme-block-arrow {
    border-right: 1px solid var(--arrow-color);
    border-bottom: 1px solid var(--arrow-color);
    border-bottom-right-radius: 25px;
    left: calc(50% - 40px);
}

.scheme-block.scheme-block-8 .scheme-block-arrow .scheme-block-arrow-text {
    right: 0 !important;
    left: auto !important;
    transform: translateX(50%) !important;
}

.scheme-block .scheme-block-arrow .vector .is-mobile {
    display: none;
}

@media only screen and (max-width: 800px) {
    .scheme-block .scheme-block-arrow .vector .is-desktop {
        display: none;
    }

    .scheme-block .scheme-block-arrow .vector .is-mobile {
        display: block;
    }

    .scheme-block.scheme-block-8 .scheme-block-arrow.no-arrow { 
        right: 10px !important;
        left: auto !important;
        top: calc(100% + var(--level-gap) / 2) !important;
        height: calc(var(--level-gap) * 1.5 + var(--level-height)* 1 - 8px) !important;
        width: 100% !important;
    }

    .scheme-block.scheme-block-8 .scheme-block-arrow.no-arrow .vector,
    .scheme-block.scheme-block-8 .scheme-block-arrow.no-arrow .vector svg {
        height: 100%;
        width: 100%;
    }

    .scheme-block.scheme-block-8.mobile-level-8 .scheme-block-arrow.no-arrow .scheme-block-arrow-text {
        right: 37px !important;
        color: var(--grey-30);
        transform: translateY(50%) translateX(50%) !important;
    }

    .scheme-block.scheme-block-7.mobile-level-8 .scheme-block-arrow:first-of-type,
    .scheme-block.scheme-block-8.mobile-level-8 .scheme-block-arrow:first-of-type {
        width: 3px !important;
        left: calc(50% - 1.5px) !important;
        height: calc(var(--level-gap) - 24px - 8px);
    }

    .scheme-block.scheme-block-7.mobile-level-8 .scheme-block-arrow:first-of-type i,
    .scheme-block.scheme-block-8.mobile-level-8 .scheme-block-arrow:first-of-type i {
        transform: translateX(-45%) !important;
        left: 50% !important;
    }

    .scheme-block.scheme-block-7.mobile-level-8 .scheme-block-arrow:first-of-type::after,
    .scheme-block.scheme-block-8.mobile-level-8 .scheme-block-arrow:first-of-type::after {
        top: 0 !important;
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.has-text.no-arrow {
        height: calc(var(--level-height) + var(--level-gap)* 2);
        top: auto;
        bottom: calc(-1* var(--level-gap) / 2);
        left: auto;
        right: -20px;
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.has-text.no-arrow .scheme-block-arrow-text {
        left: 0;
        top: auto !important;
        bottom: 0;
        height: fit-content;
        transform: translateX(-110%) translateY(40%);
        color: var(--grey-30);
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.has-text.no-arrow .vector,
    .scheme-block.scheme-block-7 .scheme-block-arrow.has-text.no-arrow .vector svg {
        height: 100%;
        width: 100%;
    }
}


@media (min-width: 800px) {
    .scheme-block.scheme-block-7 .scheme-block-arrow .scheme-block-arrow-text {
        left: 0 !important;
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.no-arrow {
        border: none;
        left: 100%;
        top: auto;
        bottom: 50%;
        height: calc(var(--level-gap) + var(--level-height));
        width: 90px;
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.no-arrow .scheme-block-arrow-text {
        top: 100% !important;
        left: 10px !important;
        transform: translateY(-60%);
        color: var(--grey-30);
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.no-arrow .vector {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .scheme-block.scheme-block-7 .scheme-block-arrow.no-arrow .vector svg{
        width: auto;
        margin-left: auto;
        height: 100%;
    }

    .scheme-block.scheme-block-8 .scheme-block-arrow.no-arrow .scheme-block-arrow-text {
        right: 17px !important;
        top: 0 !important;
        transform: translateY(-50%) !important;
        color: var(--grey-30);
    }

    .scheme-block.scheme-block-8 .scheme-block-arrow.no-arrow {
        border: none;
        right: -40px;
        left: auto;
        top: 50%;
        height: calc(var(--level-gap)* 2 + var(--level-height)* 2);
        width: calc(var(--block-width) - 42px);
    }
}

/* independence-and-transparency */

.independence-and-transparency .column {
    position: relative;
    height: 200px;
    width: calc(50% - 12px);
}

@media only screen and (max-width: 800px) { 
    .independence-and-transparency {
        gap: 6px !important;
    }
    
    .independence-and-transparency .column {
        width: 100%;
        height: fit-content;
    }
}

.independence-and-transparency .column p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.independence-and-transparency .column {
    padding-left: calc(24px + 24px + 16px) !important;
}

.independence-and-transparency .column i {
    position: absolute;
    left: 24px;
    top: 28px;
}

/* Stages */

.guide-stages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-stages .guide-stages-header {
    display: flex;
    gap: 8px;
}

@media only screen and (max-width: 800px) {
    .guide-stages .guide-stages-header {
        display: none;
    }
}

.guide-stages .guide-stages-header .header:first-child,
.guide-stages .guide-stages-header .header:last-child {
    width: 30%;
}

.guide-stages .guide-stages-header .header:nth-child(2) {
    width: calc(40% - 16px);
}

.guide-stages .guide-stages-section {
    display: flex;
    gap: 8px;
}

.guide-stages .guide-stages-section .stage {
    width: 30%;
    font-weight: 700;
    align-items: start !important;
}

@media only screen and (max-width: 800px) {
    .guide-stages .guide-stages-section {
        flex-wrap: wrap;
    }

    .guide-stages .guide-stages-section .stage {
        flex-basis: 100%;
        width: 100%;
        padding: 8px 16px !important;
        background-color: var(--blue-70) !important;
        color: var(--grey-0) !important;
    }
}

.guide-stages .guide-stages-section .stage,
.guide-stages .guide-stages-section .question,
.guide-stages .guide-stages-section .answer {
    background-color: var(--grey-0);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    text-align: left;
    align-items: center;
    color: var(--blue-100);
}

.guide-stages .guide-stages-section .questions {
    display: flex;
    gap: 8px;
    flex-direction: column;
    width: calc(70% - 8px);
}

@media only screen and (max-width: 800px) {
    .guide-stages .guide-stages-section .questions {
        width: 100%;
    }
}

.guide-stages .guide-stages-section .questions .question-row {
    display: flex;
    gap: 8px;
}


.guide-stages .guide-stages-section .questions .question-row .question {
    width: 57%;
}

.guide-stages .guide-stages-section .questions .question-row .answer {
    width: calc(43% - 8px);
    text-align: center;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    .guide-stages .guide-stages-section .questions .question-row .question {
        width: 50%;
    }
    
    .guide-stages .guide-stages-section .questions .question-row .answer {
        width: calc(50% - 8px);
    }
}

/* Performance */

.performance-block .charts {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.performance-block .charts .chart {
    width: calc(50% - 12px);
    background-color: var(--grey-0);
    border-radius: 16px;
    padding: 24px;
}

@media only screen and (max-width: 800px) {
    .performance-block .charts {
        gap: 8px;
    }

    .performance-block .charts .chart {
        width: 100%;
    }
}

.performance-block .charts .chart .g-chart {
    width: 100%;
    height: 185px;
}

.performance-block .charts .chart .pie-chart {
    height: 185px;
}

.performance-block .charts .chart .bar-chart {
    height: 250px;
}