#app {
    width: 100%;
    height: calc(100vh - 5em);
    font-size: calc(var(--baseFontSizeBL)* 1rem);
    --baseFontSizeBL: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    color: var(--el-text-color-primary);
    overflow: hidden;
    overflow-y: auto;
}

.main {
    display: flex;
    box-sizing: border-box;
    width: 100vw;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 10em 10vw 0;
    justify-content: flex-start;
}

.main h1 {
    font-size: 6em;
    margin: 0;
    text-align: center;
}

.main h2 {
    font-size: 4em;
}

.btns {
    font-size: 3em;
    display: flex;
    margin: 1.5em 0;
    color: var(--primaryColor);
    align-items: center;
}

.download {
    color: #fff;
    background: var(--primaryColor);
    padding: 0.5em 1.5em;
    border-radius: 2em;
    margin-right: 1em;
    cursor: pointer;
}

.tryOnline {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.tryOnline svg {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
}

.tryOnline svg path{
    fill: var(--el-color-primary);
}

.tryOnline:hover{
    text-decoration: underline;
}

.pricings {
    display: flex;
    box-sizing: border-box;
    width: 100vw;
    background: #ffffff;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 calc(10vw + 2em);
    padding-bottom: 15vh;
    justify-content: space-between;
}

.pricing {
    font-size: 2em;
    width: 19em;
    min-height: 25em;
    border: 1px solid var(--el-text-color-primary);
    margin: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
}

.pricing_contents {
    font-size: 1.25em;
}

.pricing_title {
    font-size: 1.5em;
    margin: 0.8em 0;
}

.pricing_title1 {
    margin-bottom: 1.5em;
    text-align: center;
}

.pricing_title1>span {
    font-size: 1.5em;
}

.pricing_title1 b:nth-child(2) {
    font-size: 2.5em;
    margin: 0.2em;
}

.pricing_title1 b:nth-child(4),
.pricing_title1 b:nth-child(5) {
    color: var(--el-color-primary);
    font-size: 1.5em;
}

.pricing button {
    background: var(--el-color-primary);
    outline: none;
    border: none;
    color: #fff;
    padding: 0.5em 1.5em;
    font-size: 1.25em;
    border-radius: 0.5em;
    cursor: pointer;
    width: 90%;
    margin-top: 1em;
}

.pricing li {
    line-height: 2;
}

.FAQs {
    width: 100%;
    margin-bottom: 3vh;
    box-sizing: border-box;
    padding: 0 calc(10vw + 12em);
    background: #ffffff;
}

.FAQs h2{
    font-size: 3em;
}

#app a:hover{
    text-decoration: underline;
}

.FQA_item {
    background: var(--el-border-color-lighter);
    box-sizing: border-box;
    padding: 1em;
    margin-bottom: 2em;
    border-radius: 0.5em;
    font-size: 2.35em;
}

.FQA_item_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FQA_item_title svg {
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
    flex-shrink: 0;
}

.FQA_item_title .hide{
    display: none;
}

.FQA_item_title svg *{
    pointer-events: none;
}

.FQA_item_title svg:hover path{
    fill: var(--el-color-primary);
}

.FQA_item_body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .2s;
}

.FQA_item_focus .FQA_item_body{
    grid-template-rows: 1fr;
}

.FQA_item_focus .show{
    display: none;
}

.FQA_item_focus .hide{
    display: block;
}

.FQA_item_body div {
    grid-row: 1 / 10;
    line-height: 1.6;
}

.page_footer_item {
    margin-right: 5em !important;
}

@media screen and (max-width: 900px) {
    #app {
        font-size: 12px !important;
    }

    .main {
        width: 100%;
        padding: 0 5vw;
        margin: 5em 0 10em;
    }
    
    .main h1 {
        font-size: 3em;
    }
    
    .btns {
        font-size: 1.5em;
    }

    .pricings {
        width: 100%;
        padding: 0 5vw;
        margin: 0 0 10em;
        display: grid;
        gap: 3em;
    }
    
    .pricing {
        margin: 0;
        font-size: 1.5em;
        width: 100%;
        box-sizing: border-box;
    }

    .FAQs {
        padding: 0 5vw;
        margin-bottom: 10em;
    }
    
    .FAQs h2 {
        font-size: 2em !important;
        margin: 0 !important;
    }

    .FQA_item {
        font-size: 1.5em;
        margin: 2em 0 0;
    }
}