/* ---reset--- */
* {
    padding: 0;
    margin: 0;
    outline: none;
}

*, *:before, *:after {
    box-sizing: border-box;
}

a {
    text-decoration: none
}

img, button::-moz-focus-inner {
    border: none
}

button {
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer
}

button:focus {
    outline: none;
    border: none;
}

input, textarea, button, select, a, .burger, .select-items>div, .selected, .bubble-box, .check-box, .radio-box {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

span {
    display: inline-block;
}

div, section {
    position: relative;
    display: block;
}

img {
    image-rendering: auto;
}

input, textarea {
    border-radius: 0;
    border: none;
}

input[type=search] {
    -webkit-appearance: none
}

input:disabled {
    background: #FFF;
    opacity: 1;
    color: #000;
}

.form label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}



/* ---Typography--- */
* {
    font-family: 'Noto Sans HK', sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: serviceimizeLegibility;
}

body, input, textarea {
    font-size: 1rem;
    font-weight: 300;
}

::selection {
    color: #000;
    background: #9bc2e9
}

::-moz-selection {
    color: #000;
    background: #9bc2e9
}

::-webkit-input-placeholder {
    font-family: 'Noto Sans HK', sans-serif;
    color: #BCBCBC;
}

:-moz-placeholder {
    font-family: 'Noto Sans HK', sans-serif;
    color: #BCBCBC;
}

::-moz-placeholder {
    font-family: 'Noto Sans HK', sans-serif;
    color: #BCBCBC;
}

:-ms-input-placeholder {
    font-family: 'Noto Sans HK', sans-serif;
    color: #BCBCBC;
}

b, .fw5 {
    font-weight: 500;
}

.textshadow {
    text-shadow: 2px 2px 10px #111;
}

.txtB {
    color: #000;
}

a, .txtW {
    color: #000;
}

h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: .09rem;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .06rem;
}

h3 {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: .05rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .05rem;
}

h5 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .02rem;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .02rem;
}

p a {
    font-weight: 400;
    letter-spacing: .02rem;
    text-decoration: underline;
}



/* ---Layout--- */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
    overflow-y: scroll;
    color: #000;
    background: #000;
    isolation: isolate;
}

#main-content {
    width: 100%;
    pointer-events: none;
}

#main-content.scr {
    position: fixed;
    left: 0;
    top: 0;
    overflow: visible;
    z-index: 10;
    width: 100%;
}

.main-container {
    width: 100%;
    background: #F3F3F3;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    pointer-events: all;
    float: left;
}

.main-container.bg-white {
    background: #ffffff;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

/* --------- Modal CSS --------- */
.site-modal {
    z-index: 50;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(67, 67, 67, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-modal.show {
    display: flex
}

.site-modal .modal-content {
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transform: scale(0);
    /* Safari & Chrome */
    -moz-transform: scale(0);
    /* Firefox */
    -ms-transform: scale(0);
    /* Internet Explorer */
    -o-transform: scale(0);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.site-modal.show.active .modal-content {
    -webkit-transform: scale(1);
    /* Safari & Chrome */
    -moz-transform: scale(1);
    /* Firefox */
    -ms-transform: scale(1);
    /* Internet Explorer */
    -o-transform: scale(1);
    transform: scale(1);
}

.site-modal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin: 2em 1.5em;
    cursor: pointer;
    border-radius: 10px;
}

.site-modal .btn-close::before,
.site-modal .btn-close::after {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 50%;
}

.site-modal .btn-close::before {
    transform: translateX(-50%) rotate(-45deg);
}

.site-modal .btn-close::after {
    transform: translateX(-50%) rotate(45deg);
}

.site-modal.normal-modal-content .modal-content {
    width: 100%;
    max-width: 750px;
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 2px solid #000000;
    padding: 1.5em;
}

.site-modal.normal-modal-content .modal-content>strong {
    font-size: 1.5625rem;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 1em;
}


header {
    width: 100%;
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    z-index: 50;
}

header::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    z-index: -2;
    background: rgb(243, 243, 243);
    background: -moz-linear-gradient(180deg, rgba(243, 243, 243, 0.75) 0%, rgba(243, 243, 243, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(243, 243, 243, 0.75) 0%, rgba(243, 243, 243, 0) 100%);
    background: linear-gradient(180deg, rgba(243, 243, 243, 0.75) 0%, rgba(243, 243, 243, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3", endColorstr="#f3f3f3", GradientType=1);
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

header.showbg::after {
    opacity: 1;
}

nav {
    width: 90%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.main-nav {
    height: 100%;
}

.nav-logo {
    width: 331px;
    height: 59px;
    display: block;
    position: relative;
}

.nav-logo::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background: url('/assets/img/logo-raster.png') center/contain no-repeat;
}

header .nav-logo.no-text {
    width: 50px !important;
}

header .nav-logo.no-text::after {
    background: url('/assets/img/logo-no-text.png') left/contain no-repeat !important;
}

.nav-list {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.nav-list a {
    padding: .1em .25em;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
}

.nav-list .nav-dropdown,
.nav-list>a {
    margin: 0 1.5em;
    position: relative;
}


.nav-list a.nav-openshop {
    margin-right: 0;
}

.nav-openshop {
    width: 100px;
    height: 100%;
    overflow: visible;
    display: block;
    position: relative;
}

.nav-openshop>span {
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    color: #FFF;
    transform: scale(0.9);
}

.nav-openshop>span p {
    font-size: 1rem;
    font-weight: 300;
}

.nav-openshop>div {
    width: 100px;
    height: 100px;
    /* background-color: #000; */
    border-radius: 50%;
    z-index: -1;
}

.nav-openshop>div>svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.nav-openshop>div>svg path {
    fill: #000;
}

#openshop-bg1 {
    /* -webkit-animation: circleMorph1 7.5s infinite forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    animation: circleMorph1 7.5s infinite forwards cubic-bezier(0.65, 0.05, 0.36, 1);
    will-change:transform; */
}

#openshop-bg2 {
    transform: scale(0.95);
    z-index: -1;
    /* -webkit-animation: circleMorph2 5s infinite forwards cubic-bezier(0, 0.43, 1, 0.57);
    animation: circleMorph2 5s infinite forwards cubic-bezier(0, 0.43, 1, 0.57); */
}

@-webkit-keyframes circleMorph1 {
    0% {
        -webkit-transform: rotate(0deg) scale(1.1);
    }

    50% {
        -webkit-transform: rotate(120deg) scale(0.9);
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1.1);
    }
}

@keyframes circleMorph1 {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    50% {
        transform: rotate(120deg) scale(0.9);
    }

    100% {
        transform: rotate(0deg) scale(1.1);
    }
}

@-webkit-keyframes circleMorph2 {
    0% {
        -webkit-transform: rotate(-120deg) scale(0.9);
    }

    50% {
        -webkit-transform: rotate(0deg) scale(1.1);
    }

    100% {
        -webkit-transform: rotate(-120deg) scale(0.9);
    }
}

@keyframes circleMorph2 {
    0% {
        transform: rotate(-120deg) scale(0.9);
    }

    50% {
        transform: rotate(0deg) scale(1.1);
    }

    100% {
        transform: rotate(-120deg) scale(0.9);
    }
}

.nav-menu {
    display: none;
    position: relative;
    width: 48px;
    height: 36px;
    margin-left: 32px;
}

.ham {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease-in-out;
}

nav.active .ham {
    transform: rotate(45deg);
}

.ham path {
    fill: none;
    transition: stroke-dasharray .4s, stroke-dashoffset .4s;
    stroke: #000;
    stroke-width: 4;
    stroke-linecap: round;
}

.ham .top {
    stroke-dasharray: 40 121;
}

.ham .bottom {
    stroke-dasharray: 40 121;
}

nav.active .ham .top {
    stroke-dashoffset: -68px;
}

nav.active .ham .bottom {
    stroke-dashoffset: -68px;
}

.nav-bg {
    display: none;
}

.nav-dropdown>a {
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.nav-dropdown>a>div {
    padding-right: 15px;
    position: relative;
}

.nav-dropdown>a>div::before {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0);
    transition: transform .3s ease-in-out;
}

.nav-dropdown:hover>a>div::before {
    transform: translateY(-50%) rotate(-180deg);
}

.nav-dropdown .dropdown-container {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease-in-out;
    pointer-events: none;
    padding-top: 30px;
}

.nav-dropdown:hover .dropdown-container {
    transform: scaleX(1);
    pointer-events: all;
}

.nav-dropdown .dropdown-container>.dropdown-list {
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 1.5em;
    margin: 0 auto;
}

.nav-dropdown .dropdown-list>a {
    display: block;
}

.function-nav-list__desktop,
.openshop-function {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.openshop-function {
    flex-wrap: wrap;
}

.function-nav-item {
    width: 33.33%;
    width: calc(100% / 3);
    position: relative;
    padding: 10px !important;
}

#modal-openshop .function-nav-item {
    width: 50%;
}

.function-nav-item:not(:last-child)::after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 90%;
    background-color: #000000;
    transform: translateY(-50%);
}

#modal-openshop .function-nav-item:not(:last-child)::after {
    display: none !important;
}

.function-nav-item>div {
    padding: 1.5em;
    border-radius: 12px;
    height: 100%;
}

.function-nav-item:hover>div {
    background-color: #FDE1AA;
}

.function-nav-item:nth-child(2):hover>div {
    background-color: #C8FCE5;
}

.function-nav-item:nth-child(3):hover>div {
    background-color: #E0F3FE;
}

.function-nav-item:nth-child(4):hover>div {
    background-color: #E8CCFF;
}

.function-nav-item>div>* {
    display: block;
}

.function-nav-item>div>img {
    width: auto;
    height: 74px;
    object-fit: contain;
}

.function-nav-item>div>h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 20px 0;
}

.function-nav-item>div>small {
    font-size: 1rem;
    text-align: justify;
}

.function-nav-list__mobile {
    display: none;
    padding-left: 10px;
    max-height: 0;
    transition: max-height .3s ease-in-out;
    overflow: hidden;
    pointer-events: none;
}

.nav-dropdown:hover .function-nav-list__mobile,
.nav-dropdown.open .function-nav-list__mobile {
    max-height: 1000px !important;
    pointer-events: all;
}

.function-nav-list__mobile>a {
    font-size: 1.25rem !important;
    margin: 10px 0;
}

.function-nav-list__mobile>a:hover {
    font-weight: 400 !important;
}


footer {
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    pointer-events: all;
    float: left;
    color: #FFF;
}

.footer-container {
    width: 95%;
    margin: 2em auto;
    text-align: center;
}

.footer-logo {
    width: 70%;
    margin: 1em auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .nav-logo::after {
    background: url('/assets/img/logo-raster-white.png') center/contain no-repeat;
}

.footer-copyright {
    font-size: .85rem;
    font-weight: 300;
    letter-spacing: .05rem;
    color: #ACACAC;
}

.footer-info {
    margin: 2.5em auto;
}

.footer-info h5 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .05rem;
    color: #FFF;
}

.footer-info p, .footer-info p a {
    font-size: .95rem;
    font-weight: 300;
    letter-spacing: .05rem;
    color: #FFF;
}

.footer-info p a {
    text-decoration: none;
}

.footer-info-block {
    margin-bottom: 1.5em;
}


.banner {
    width: 100%;
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80);
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    background-color: #FFB100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner.sticky {
    z-index: 49;
    background-color: transparent;
    pointer-events: none;
}

.banner-container {
    width: 80%;
    height: 100%;
    max-width: 1600px;
    max-height: 100%;
}

.banner-placeholder {
    width: 100%;
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80);
    margin: 0 auto;
    pointer-events: none;
}

.banner-block {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

.banner-col {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-col:first-of-type {
    width: 40%;
}

.banner-anim-obj {
    width: 100%;
    height: 75%;
    height: calc(90% - 144px);
    margin-top: 72px;
    overflow: visible;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .banner-anim-obj::before, .banner-anim-obj::after {
    content: '';
    display: block;
    flex: auto;
} */

.banner-anim-obj>svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    overflow: visible;
    flex: 1;
}

.banner-textblock {
    width: 100%;
    height: 100%;
    padding-top: 96px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.banner-title {
    width: 100%;
    height: 45%;
    max-width: 560px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.banner-title-container {
    width: 100%;
}

.banner-action {
    width: 100%;
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.banner-caption {
    width: 100%;
    padding-top: 5%;
}

.banner-caption h4 {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1em;
}

.svgtext {
    width: 100%;
    line-height: 0;
}

.svgtext>svg {
    width: 100%;
    object-fit: contain;
    object-position: left center;
}

.svgtext>svg text {
    font-family: 'Noto Sans HK', sans-serif;
    font-weight: 500;
    color: #000;
}

.svgtext.hollow>svg {
    text-shadow: 1px 0 #000, 1px 1px #000, 1px -1px #000, 0 1px #000, 0 -1px #000, -1px 0 #000, -1px 1px #000, -1px -1px #000;
}

.svgtext.hollow-white>svg {
    text-shadow: 1px 0 #ffffff, 1px 1px #ffffff, 1px -1px #ffffff, 0 1px #ffffff, 0 -1px #ffffff, -1px 0 #ffffff, -1px 1px #ffffff, -1px -1px #ffffff;
}

.svgtext.hollow>svg text,
.svgtext.hollow-white>svg text {
    stroke: none !important;
}

.banner .svgtext.hover-svgtext>svg text {
    fill: #ffb100;
}

.whatsapp-section .svgtext.hover-svgtext>svg text {
    fill: #004B3F;
}

.plan-special-block .svgtext.hover-svgtext>svg text {
    fill: #f3f3f3;
}

.plan-section-container>h3>svg>g>text:first-child {
    text-shadow: 2px 2px 0px #FFB100;
}

.plan-section-container>h3>svg>g>text:last-child {
    text-shadow: 1px 0 #000, 1px 1px #000, 1px -1px #000, 0 1px #000, 0 -1px #fff, -1px 0 #000, -1px 1px #000, -1px -1px #000;
}

.plan-section-container>h3 {
    display: flex;
    white-space: nowrap;
    align-items: flex-end;
    line-height: 3;
    justify-content: center;
    font-weight: 500;
}

.plan-section-container>h3>svg {
    margin: 0 10px;
    min-width: 80px;
}

.plan-section-container>p {
    text-align: center;
}

.svgtext.hover-svgtext>svg text {
    color: transparent;
    fill: none;
    paint-order: fill;
    stroke: #000000;
    stroke-width: 1px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    letter-spacing: .25rem;
}

.svgtext.hover-svgtext:hover>svg text {
    fill: #FFF;
}

.section-svgtitle tspan {
    font-size: 48px;
    font-weight: 700;
    color: transparent;
    fill: #FFB100;
    paint-order: fill;
    stroke: #000000;
    stroke-width: 1px;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    text-shadow: 2px 2px 0px #FFB100;
}

.svgtext.feature-text {
    height: 100%;
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svgtext.feature-text>svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    flex: 1;
}

.svgtext.feature-text>svg .title {}

.svgtext.feature-text>svg .des {
    font-weight: 400;
}


.contained-btn {
    display: block;
    position: relative;
    padding: .6em 2.5em;
    color: #FFF;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #FFF;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.contained-btn>span {
    display: block;
    position: relative;
    mix-blend-mode: difference;
    font-size: .9rem;
    font-weight: 300;
    /* z-index: 1; */
}

.contained-btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    /* z-index: -1; */
}

.contained-btn:hover::before {
    transform: translate3d(100%, 0, 0);
}

.mobile-nav {
    display: none;
    height: 100%;
    justify-content: space-between;
    align-items: flex-end;
}





.scr-hint {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    float: left;
    margin: 10px 0;
}

.scr-text {
    color: #000;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .1rem;
    writing-mode: tb-rl;
    text-transform: uppercase;
    line-height: 16px;
}

.scr-line {
    width: 1.5px;
    height: 42px;
    overflow: hidden;
    margin: 10px auto;
}

.scr-line::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    -webkit-animation: scrInfLine 1.5s infinite forwards ease-in-out;
    animation: scrInfLine 1.5s infinite forwards ease-in-out;
}

.scr-arrow {
    width: 16px;
    height: 16px;
    background: url('/assets/img/scr-arrow-down.svg') center/contain no-repeat;
}

@-webkit-keyframes scrInfLine {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(150%);
    }
}

@keyframes scrInfLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(150%);
    }
}

.section-vh-title {
    width: 90%;
    max-width: 680px;
    margin: 0 auto;
    height: 20vh;
    height: calc(var(--vh, 1vh) * 20);
    display: flex;
    justify-content: center;
    align-items: center;
}




.feature-section {
    width: 80%;
    margin: 0 auto;
}

.feature-section p {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: .15rem;
    line-height: 1.75;
}

.feature-block {
    width: 100%;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 4em;
}

.feature-row-placeholder {
    width: 25%;
}

.feature-iconrow {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.feature-icon {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.feature-icon-container {
    width: 100%;
    max-width: 400px;
}

.feature-icon-container img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.feature-des {
    width: 65%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.feature-textrow {
    width: 75%;
}

.feature-des-bubble {
    width: intrinsic;
    width: fit-content;
    width: -moz-fit-content;
    padding: 5% 8% 10% 8%;
    background: url('/assets/img/textbubble-01.svg') center/100% 100% no-repeat;
}

.feature-des-bubble>img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    z-index: -1;
}

.feature-des-bubble h3 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: .75rem;
    line-height: 1.75;
    z-index: 1;
    white-space: nowrap;
}

.feature-des-bubble h4 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .5rem;
    line-height: 1.5;
    z-index: 1;
}

.feature-block .feature-title {
    position: relative;
    padding-left: 80px;
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 30px;
    white-space: nowrap;
}

.feature-block .feature-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.feature-block:nth-child(1) .feature-title::before {
    background: url('/assets/img/number-01.png') center/contain no-repeat;
}

.feature-block:nth-child(2) .feature-title::before {
    background: url('/assets/img/number-02.png') center/contain no-repeat;
}

.feature-block:nth-child(3) .feature-title::before {
    background: url('/assets/img/number-03.png') center/contain no-repeat;
}

.feature-block:nth-child(4) .feature-title::before {
    background: url('/assets/img/number-04.png') center/contain no-repeat;
}

.feature-block:nth-child(5) .feature-title::before {
    background: url('/assets/img/number-05.png') center/contain no-repeat;
}

.feature-block .feature-img {
    max-width: 800px;
    width: 100%;
    margin-bottom: 8%;
}

.feature-block .feature-img>img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


.whatsapp-section {
    width: 100%;
    margin: 0 auto;
    background-color: #004B3F;
}

.whatsapp-section .svgtext>svg text {
    /* stroke: #FFF;
    stroke-width: 0.5px; */
    letter-spacing: unset;
}

.whatsapp-section-container {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: url('/assets/img/whatsapp-bg.svg') 90% 50%/40% no-repeat;
}

.whatsapp-section-row {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 3em;
}

.whatsapp-section-des {
    width: 60%;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.whatsapp-section-img {
    width: 35%;
}

.whatsapp-section-row h3 {
    margin-bottom: 1em;
}

.whatsapp-section-row h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .15rem;
    line-height: 1.5;
    color: #FFF;
    margin-bottom: .75em;
    display: flex;
    align-items: center;
}

.whatsapp-section-row h4 span {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    background-color: #FFF;
    border-radius: 50% 50% 50% 0;
    margin-right: 1.5em;
}


.plan-section {
    width: 100%;
    margin: 0 auto;
}

.plan-section-container {
    width: 80%;
    margin: 1em auto;
}

.plan-section-tabbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em auto;
    margin-top: 2.5em;
}

.bg-btn {
    padding: 1em 2em;
}

.bg-btn.clicked {
    color: #FFB100;
    background: url('/assets/img/btn-bg.svg') center/100% 100% no-repeat;
}

.btn-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #000;
}

.btn-checkbox span:first-of-type {
    width: 28px;
    height: 28px;
    margin-right: 1em;
}

.btn-checkbox span:first-of-type>svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.btn-checkbox span:first-of-type>svg .tick {
    fill: none;
}

.btn-checkbox.clicked span:first-of-type>svg {
    fill: #FFB100;
}

.btn-checkbox.clicked span:first-of-type>svg .tick {
    fill: #FFB100;
}



.plan-details-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 1em;
}

.plan-section .plan-details-remarks {
    width: 100%;
    max-width: 995px;
    margin: 10% auto 0;
}

.plan-details-remarks p {
    font-size: .85rem;
}

.plan-details-letter {
    width: 100%;
}

.plan-section-tab {
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
    display: none;
}

.plan-section-tab.active {
    display: flex;
}

.plan-details-tab {
    width: 30%;
    padding: 1em 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.plan-details-box {
    width: 100%;
    height: 100%;
    padding: 1em;
    padding-bottom: 2em;
    border: 3px solid #000;
}

.plan-details-box h5 {
    text-align: left;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: .5em;
    display: flex;
    align-items: center;
}

.plan-details-box h5 span {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 1em;
    background: url('/assets/img/list-tick.svg') center/contain no-repeat;
}

.plan-details-box h3 {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .05rem;
    margin-top: .5em;
}

.plan-details-box h4 {
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: .05rem;
    margin-top: 1.5em;
}

.plan-details-box h4 span {
    font-weight: 700;
    font-size: 2.5rem;
    margin-left: .25em;
}

.plan-details-box h6 {
    font-weight: 300;
    font-size: .9rem;
    margin-top: .5em;
    margin-bottom: 2em;
}


.plan-details-tab:nth-of-type(odd) .plan-details-box h4 span {
    color: #FFB100;
}

.plan-details-tab:nth-of-type(even) .plan-details-box {
    background-color: #FFB100;
}

.plan-block-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10%;
    margin-top: 3em;
}

.plan-block {
    width: 100%;
    border-radius: 15px;
    position: relative;
    padding: 3em 1.5em;
    height: 100%;
}

.plan-block>*,
.btn-select-plan>* {
    z-index: 5;
}

.btn-select-plan.disabled {
    pointer-events: none !important;
}

.plan-block::before,
.btn-select-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
    border: 4px solid #000000;
    background-color: transparent;
    z-index: 2;
}

.plan-block::after,
.btn-select-plan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
    transform: translate(.5em, .5em);
}

.btn-select-plan.error::after {
    background-color: red;
}

.btn-select-plan.invalid::after {
    background-color: #BEBEBE;
}

.plan-block::after {
    transform: translate(.8em, .8em);
}

.plan-section-tab>.plan-details-tab:nth-child(1) .plan-block::after {
    background-color: #FFE1AA;
}

.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block::after {
    background-color: #C8FCE5;
}

.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block::after {
    background-color: #E0F3FE;
}

.plan-block .title-box {
    width: 100%;
    border-radius: 15px;
    padding: 1em;
    text-align: center;
    margin-bottom: 2em;
    min-height: 140px;
}

.plan-section-tab>.plan-details-tab:nth-child(1) .plan-block .title-box,
.btn-select-plan::after,
.plan-section-tab>.plan-details-tab:nth-child(1) .plan-block .custom-select .selector,
.plan-section-tab>.plan-details-tab:nth-child(1) .plan-block .custom-select .options {
    background-color: #FBB12B;
}

.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block .title-box,
.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block-container .btn-select-plan::after,
.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block .custom-select .selector,
.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block .custom-select .options {
    background-color: #3DE07E;
}

.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .title-box,
.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block-container .btn-select-plan::after,
.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .custom-select .selector,
.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .custom-select .options {
    background-color: #24667D;
}

.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block-container .btn-select-plan,
.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .title-box * {
    color: #ffffff;
}

.plan-block .title-box>h3 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.8em;
}

.plan-block .title-box>h6 {
    font-size: 1rem;
    font-weight: 400;
}

.plan-block .plan-details {
    text-align: center;
}

.plan-block .plan-details>.price {
    font-size: 1.875rem;
    font-weight: 700;
    display: block;
}

.plan-block .plan-details>.price>.org-price {
    text-decoration: line-through;
    font-size: 1.5rem;
    margin-right: 5px;
}

.plan-block .plan-details>.unit {
    font-size: .9375rem;
    font-weight: 500;
}

.plan-block .plan-details>.unit>.org-price {
    text-decoration: line-through;
    font-size: .875rem;
    margin-right: 5px;
}

.plan-block .plan-details>h4 {
    font-size: 1.375rem;
    font-weight: 500;
    margin: 2.5em 0;
}

.plan-block .plan-details>.plan-details-list {
    list-style: none;
    text-align: center;
    display: block !important;
}

.plan-block .plan-details>.plan-details-list>li {
    font-size: 1.125rem;
    margin: 0.8em 0;
}

.plan-block .plan-details>.plan-details-list.tick-cross {
    text-align: left;
    padding: 0 30px;
}

.plan-block .plan-details>.plan-details-list.tick-cross>li {
    position: relative;
    padding-left: 45px;
    font-weight: 500;
    color: #9E8B69;
}

.plan-block .plan-details>.plan-details-list.tick-cross>li::before {
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    background-image: url('/assets/img/plan-cross-yellow.svg');
    position: absolute;
    top: .5em;
    left: 2px;
}

.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block .plan-details>.plan-details-list.tick-cross>li::before {
    background-image: url('/assets/img/plan-cross-green.svg');
}

.plan-section-tab>.plan-details-tab:nth-child(2) .plan-block .plan-details>.plan-details-list.tick-cross>li {
    color: #7DC198;
}

.plan-block .plan-details>.plan-details-list.tick-cross>li.tick {
    color: #000000 !important;
}

.plan-block .plan-details>.plan-details-list.tick-cross>li.tick::before {
    background-image: url('/assets/img/plan-check.svg') !important;
    width: 20px !important;
    height: 20px !important;
    left: 0 !important;
}

.sales-tag {
    width: auto;
    width: fit-content;
    color: #000000;
    background-color: #FBB12B;
    border-radius: 5px;
    font-size: .875rem;
    font-weight: 500;
    padding: 5px 10px;
    margin: -3px auto 5px;
}

.plan-head__item .sales-tag {
    margin-top: -20px;
}

.btn-select-plan {
    width: 80%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
    border-radius: 10px;
    position: relative;
    display: block;
    cursor: pointer;
}

.plan-block-container .btn-select-plan {
    margin-top: 3em;
}

.btn-select-plan>* {
    font-size: 1.125rem;
    text-align: center;
    font-weight: 500;
}

.btn-select-plan:hover::after {
    transform: translate(0, 0);
}

.shadow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    border: 2px solid #000000;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: 2;
    background-color: #FFFFFF;
}

.shadow-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: #000;
    transform: translate(0.2em, 0.2em);
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.shadow-box>* {
    z-index: 5;
}

.plan-block .plan-app {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.plan-block .plan-app>img {
    width: 25px;
    max-height: 25px;
    object-fit: contain;
    display: block;
    margin: 0 10px;
}

.plan-block .hot-plan {
    width: auto;
    min-width: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 10px;
}

.plan-block .hot-plan>* {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.plan-block .hot-plan.shadow-box::before {
    background-color: #FFE98D;
}

.plan-custom-block {
    width: 100%;
    max-width: 995px;
    margin: 10px auto 10%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1.5em;
    position: relative;
}

.plan-custom-block>p {
    font-size: .9375rem;
    font-weight: 500;
    margin: 5em 0 2em;
}

.plan-custom-block>.btn-plan-details>span {
    font-size: 1.125rem;
    font-weight: 500;
}


.ratio-box {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 50% 0 0 0;
}

.ratio-box.sq {
    padding: 100% 0 0 0;
}

.ratio-box.hd {
    padding: 56.25% 0 0 0;
}

.ratio-box.vga {
    padding: 75% 0 0 0;
}

.ratio-box.wide {
    padding: 42.857% 0 0 0;
}

.ratio-obj {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ratio-obj>* {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ratio-obj.contain>* {
    object-fit: contain;
}

.ratio-obj.top>* {
    object-position: top;
}

.ratio-obj.bottom>* {
    object-position: bottom;
}

.plan-details-tab .ratio-box {
    padding: 35.7% 0 0 0;
}

.screenshot-section-screen .ratio-box {
    padding: 84.45% 0 0 0;
}

.whatsapp-section-img .ratio-box {
    padding: 140% 0 0 0;
}

.plan-details-tab .ratio-obj>div>img {
    width: 27.5%;
    height: auto;
}

.screenshot-section-screen .ratio-obj>div>img {
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
    position: relative;
}


.plan-special-block {
    width: 100%;
    margin: 4em auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.plan-special-text {
    width: 50%;
}

.plan-special-link {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.plan-special-img {
    width: 27.5%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.plan-special-block .svgtext {
    max-width: 560px;
    padding-left: 10%;
}

.plan-special-block .svgtext.hover-svgtext>svg text {
    stroke-width: 0.5px;
    font-weight: 700;
}

.plan-special-block .svgtext.hover-svgtext:hover>svg text {
    fill: #000;
}

.plan-special-text h3:last-of-type {
    padding-left: 10%;
}


.screenshot-section {
    width: 100%;
    margin: 0 auto;
    background-color: #FFB100;
}

.screenshot-section>h3 {
    text-align: center;
    max-width: 540px;
    width: 90%;
    margin: 0 auto;
}

.screenshot-section-container {
    width: 80%;
    margin: 0 auto;
    padding: 2em 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.screenshot-section-text {
    width: 35%;
}

.screenshot-section-screen {
    width: 60%;
    margin-left: 5%;
    max-width: 540px;
}

.screenshot-section-text .bg-btn {
    width: 90%;
    text-align: left;
    max-width: 240px;
    font-size: 1.1rem;
}

.screenshot-section-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.screenshot-cms {
    position: absolute;
    top: 6%;
    left: 4.2%;
    width: 91%;
    height: 60%;
}

.screenshot-cms>img {
    width: 100%;
    height: auto;
}

.swiper-template {
    display: none;
}

.swiper-button-next, .swiper-button-prev {
    color: #FFB100;
}

.testimonial-section {
    width: 100%;
    margin: 0 auto;
}

.testimonial-slider {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}

.testimonial-slide {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 4em;
    margin-bottom: 2.5em;
}

.testimonial-quote {
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.testimonial-quote::after {
    content: '';
    display: block;
    width: 100%;
    height: 64px;
    background: url('/assets/img/icon-quote-open.svg') center/contain no-repeat;
}

.testimonial-quote.end {
    align-items: flex-end;
}

.testimonial-quote.end::after {
    background: url('/assets/img/icon-quote-close.svg') center/contain no-repeat;
}

.testimonial-quote-content {
    width: 100%;
    padding: 3em 2em;
}

.testimonial-quote-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .15rem;
}

.testimonial-quote-content h5 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .05rem;
    margin-top: .5em;
}

.main-container.plan {
    background: #ffffff;
}

.plan-view h1 {
    font-size: 1.875rem;
    font-weight: 500;
    text-align: center;
    margin: 10% 0 5%;
    width: 100%;
}

.plan-view {
    width: 90%;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 10%;
    max-width: 1300px;
}

.plan-head-dummy {
    height: 2px;
}

.plan-view .plan-head-holder {
    transition: max-width 1s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
    padding: 0 2em;
}

.plan-view .plan-head-holder.squeeze {
    position: sticky;
    width: 100%;
    max-width: 1300px;
    top: 122px;
}

.plan-view .plan-head-holder.squeeze::after {
    content: '';
    width: 100vw;
    height: calc(100% + 122px);
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;

}

.plan-view .plan-head-holder>* {
    z-index: 5;
}

.plan-view .plan-head {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 30px;
    transition: width .5s ease;
}

.plan-view .plan-head-holder.squeeze .plan-head {
    width: 80%;
}

.plan-head__item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 1s ease;
}

.plan-view .plan-head-holder.squeeze .plan-head__item {
    width: 30%;
}

.plan-head__item>div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-head__item *,
.plan-info-block * {
    transition: all 0.5s ease;
}

.plan-head__item h2 {
    font-size: 22px;
    color: #24667D;
    font-weight: 600;
    min-height: 70px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item h2,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>h2 {
    font-size: 18px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item h2 {
    min-height: 60px;
}

.plan-head__item p {
    font-size: 16px;
    margin-bottom: 40px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item p,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>p {
    display: none;
}

.plan-head__item .price,
.plan-head-mobile .plan-info-block .plan-info__content>div>.price {
    font-size: 30px;
    font-weight: 700;
}

.plan-head__item .price>.org-price,
.plan-head-mobile .plan-info-block .plan-info__content>div>.price>.org-price {
    font-size: 20px;
    text-decoration: line-through;
    margin-right: 5px;
    display: inline-block;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .sales-tag,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>h2>.sales-tag {
    font-size: .75rem;
}

.plan-view .price-year,
.plan-view .price-month {
    display: none;
}

.plan-view .price-year.active,
.plan-view .price-month.active {
    display: block;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .price,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>div>.price {
    font-size: 25px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .price>.org-price,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>div>.price>.org-price {
    font-size: 15px;
}

.plan-head__item .unit,
.plan-head-mobile .plan-info-block .plan-info__content>div>.price>.unit {
    font-size: 15px;
    font-weight: 500;
}

.plan-head__item .unit>.org-price {
    font-size: 12px;
    text-decoration: line-through;
    margin-right: 3px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .unit,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>div>.price>.unit {
    font-size: 13px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .unit>.org-price {
    font-size: 10px;
}

.plan-head__item .btn-select-plan {
    margin-top: 40px;
}

.plan-view .plan-head-holder.squeeze .plan-head__item .btn-select-plan,
.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .btn-select-plan {
    font-size: 1rem;
    margin-top: 20px;
    padding: 0.5em;
}

.plan-head__item:nth-of-type(2) .btn-select-plan::after {
    background-color: #3DE07E;
}

.plan-head__item:nth-of-type(3) .btn-select-plan::after {
    background-color: #24667D;
}

.plan-head__item:nth-of-type(3) .btn-select-plan {
    color: #ffffff;
}

.plan-body-holder {
    margin-top: 50px;
}

.plan-body {
    list-style: none;
}

.plan-body>li {
    width: 100%;
    display: flex;
    padding: 1.5em 2em;
    position: relative;
}

.plan-body>.plan-body__row:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D8D8D8;
    pointer-events: none;

}

.plan-body .plan-body__thead {
    background-color: #FBB12B;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 500;
}

.plan-body .plan-body__row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2em;

}

.plan-body .plan-body__row>.title-cell {
    width: 20%;
    font-size: 1rem;
    font-weight: 500;
}

.plan-body .plan-body__row>.data-cell-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.plan-body .plan-body__row>.data-cell-container>div {
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
}

.plan-body .plan-check {
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    position: relative;
    color: #000000;
}

.plan-body .plan-check.tick {
    background-color: #FFB100;
}

.plan-body .plan-check.cross {
    color: #767676;
    background-color: #F7F6F4;
}

.plan-body .plan-check::before {
    font-size: 1.125rem;
    text-align: center;
    font-weight: 500;
    color: inherit;
}

.plan-body .plan-check.cross::before {
    content: '\2717';
}

.plan-body .plan-check.tick::before {
    content: '\2713';
}

.plan-head-mobile {
    display: none;
    width: 100%;
}

.plan-head-mobile .plan-info-block {
    width: 100%;
    padding: 1.5em;
    border-radius: 20px;
}

.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block {
    padding: 1em 1.5em;
}

.plan-head-mobile .plan-info-block .plan-info__content {
    display: none;
}

.plan-view[data-active="a"] .plan-head-mobile .plan-info-block .plan-info__content#plan-info-a,
.plan-view[data-active="b"] .plan-head-mobile .plan-info-block .plan-info__content#plan-info-b,
.plan-view[data-active="c"] .plan-head-mobile .plan-info-block .plan-info__content#plan-info-c {
    display: block;
}

.plan-head-mobile .plan-info-block .plan-info__content>h2 {
    color: #24667D;
    font-size: 1.25rem;
    font-weight: 700;

        display: flex;
    align-items: center;
}

.plan-head-mobile .plan-info-block .plan-info__content>h2>.sales-tag {
    margin: 0;
    margin-left: .5em;
}

.plan-head-mobile .plan-info-block .plan-info__content>p {
    font-size: 1rem;
    margin-top: 20px;
}

.plan-head-mobile .plan-info-block .plan-info__content>div {
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
}

.plan-head-mobile .plan-info-block .plan-info__content>div>* {
    margin-top: 20px;
}

.plan-head-mobile .plan-info-block .plan-info__content>div>.price {
    margin-right: 5px;
    white-space: nowrap;
}

.plan-head-mobile .plan-info-block .plan-info__content>div>.price>.unit {
    display: inline-block;
    margin-left: 10px;
}




.plan-head-mobile .plan-tabs {
    margin: 30px 0;
    transition: margin .5s ease;
}

.plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-tabs {
    margin: 0 0 10px;
}

.plan-head-mobile .plan-tabs {
    overflow: hidden;
}

.plan-head-mobile .plan-tabs .swiper-slide {
    width: auto !important;
    padding: 0 10px;
}

.plan-head-mobile .plan-tabs .plan-tab {
    width: auto !important;
    min-width: 180px;
}

.plan-head-mobile .plan-tabs .plan-tab>div {
    white-space: nowrap;
    font-size: 14px;
}

.plan-head-mobile .plan-tabs .swiper-slide:nth-child(2)>.btn-select-plan::after,
.plan-head-mobile .plan-info__content:nth-child(2) .btn-select-plan::after {
    background-color: #3DE07E;
}

.plan-head-mobile .plan-tabs .swiper-slide:nth-child(3)>.btn-select-plan::after,
.plan-head-mobile .plan-info__content:nth-child(3) .btn-select-plan::after {
    background-color: #24667D;
}

.plan-head-mobile .plan-tabs .swiper-slide:nth-child(3)>.btn-select-plan>*,
.plan-head-mobile .plan-info__content:nth-child(3) .btn-select-plan>* {
    color: #ffffff;
}

.plan-custom-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.plan-custom-wrapper>div {
    width: 48%;
    display: flex;
    align-items: center;
    padding: 2em;
    justify-content: space-between;
    margin-top: 10%;
    border-radius: 20px;
}

.plan-custom-wrapper>div>.img-container {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-custom-wrapper>div>.img-container>img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.plan-custom-wrapper>div>.content {
    width: 65%;
}

.plan-custom-wrapper .btn-select-plan {
    width: 90%;
    max-width: unset;
    margin-left: 0;
    margin-top: 1.5em;
}

.plan-custom-wts::before {
    background-color: #3DE07E;
}

.plan-custom-wrapper>div>.content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    margin-bottom: .75em;
    display: flex;
    align-items: center;
}

.plan-custom-wts .content h4 span {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    background-color: #000000;
    border-radius: 50% 50% 50% 0;
    margin-right: 1.5em;
}

.plan-custom-wts .btn-select-plan::after {
    background-color: #ffffff;
}

.plan-custom-wrapper>div .mobile {
    display: none;
    position: absolute;
    bottom: 20px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

/* ------Service------ */

.service-banner {
    width: 100%;
    height: 60vh;
    height: calc(var(--vh, 1vh) * 60);
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    background-color: #FFB100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-banner-placeholder {
    width: 100%;
    height: 60vh;
    height: calc(var(--vh, 1vh) * 60);
    margin: 0 auto;
    pointer-events: none;
}

.service-banner .banner-container {
    display: flex;
    align-items: stretch;
}

.service-banner .banner-container>div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-banner .service-banner-img>img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.service-tab-container {
    margin: 60px auto 0;
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-tab-container .service-tab {
    width: 33.33%;
    width: calc(100% / 3);
    margin-bottom: 20px;
}

.service-tab-container .service-tab>.arrow {
    width: 15%;
    padding: 15% 0 0 0;
    overflow: hidden;
    display: block;
    margin: 30px auto 0;
    visibility: hidden;
    pointer-events: none;
}

.service-tab-container .service-tab>.btn-select-plan {
    max-width: unset;
}

.service-tab-container .service-tab:nth-child(1)>.arrow {
    background: url('/assets/img/service-arrow-1.svg') center/contain no-repeat;
}

.service-tab-container .service-tab:nth-child(2)>.arrow {
    background: url('/assets/img/service-arrow-2.svg') center/contain no-repeat;
}

.service-tab-container .service-tab:nth-child(3)>.arrow {
    background: url('/assets/img/service-arrow-3.svg') center/contain no-repeat;
}

.service-tab-container .service-tab:nth-child(4)>.arrow {
    background: url('/assets/img/service-arrow-4.svg') center/contain no-repeat;
}

.service-tab-container .service-tab:nth-child(1)>.btn-select-plan::after {
    background-color: #FBB12B;
}

.service-tab-container .service-tab:nth-child(2)>.btn-select-plan::after {
    background-color: #3DE07E;
}

.service-tab-container .service-tab:nth-child(3)>.btn-select-plan::after {
    background-color: #24667D;
}

.service-tab-container .service-tab:nth-child(3)>.btn-select-plan>div {
    color: #ffffff;
}

.service-tab-container .service-tab:nth-child(4)>.btn-select-plan::after {
    background-color: #BC77F0;
}


.service-tab-container .service-tab.active>.arrow {
    visibility: visible;
}

.service-pages .service-page {
    display: none;
}

.service-pages .service-page.active {
    display: block;
}

.service-page>section {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.service-page>section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}

.service-page>section>* {
    z-index: 5;
    position: relative;
}

.service-page h2 {
    font-size: 1.875rem;
    font-weight: 600;
}

.service-page .service-basic {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-page .service-basic>* {
    text-align: center;
}

.service-page .service-basic>h1 {
    position: relative;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.service-page .service-basic>h1::after {
    content: '';
    width: 25px;
    height: 60px;
    position: absolute;
    top: -50%;
    left: 100%;
    background: url('/assets/img/service-title-dec-1.svg') center/contain no-repeat;
}

.service-page:nth-child(2) .service-basic>h1::after {
    background: url('/assets/img/service-title-dec-2.svg') center/contain no-repeat;
}

.service-page:nth-child(3) .service-basic>h1::after {
    background: url('/assets/img/service-title-dec-3.svg') center/contain no-repeat;
}

.service-page:nth-child(4) .service-basic>h1::after {
    background: url('/assets/img/service-title-dec-4.svg') center/contain no-repeat;
}

.service-page .service-basic>p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
}

.service-page .service-basic>.tags {
    margin-top: 100px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-page .service-basic>h2 {
    margin-bottom: 40px;
}

.service-page .service-basic .plan-custom-wrapper {
    width: 100%;
}

.service-page .service-basic .plan-custom-wrapper>div {
    margin: 0 auto;
    width: 95%;
    max-width: 620px;
}

.service-page .service-basic .plan-custom-wrapper>div h4 {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    text-align: left;
    white-space: nowrap;
}

.service-page .service-basic .plan-custom-wrapper>div h4>span {
    font-size: 65px;
}

.service-page .service-basic .plan-custom-wrapper>div>.content {
    width: 60%;
}

.service-page .service-basic .plan-custom-wrapper>div>.img-container>img {
    width: 100%;
}

.service-page .service-function::after,
.service-page .bg-grey::after {
    background-color: #F3F3F3;
}

.service-page .service-function>h2 {
    text-align: center;
    margin-bottom: 100px;
}

.service-function-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-function-container>* {
    width: 49%;
}

.service-function-container .img-display {
    border-radius: 20px;
}

.service-function-container .img-display .img-block {
    width: 100%;
    height: auto;
    padding: 56.8% 0 0 0;
    /* border: 2px solid #000; */
    /* border-radius: 25px; */
    overflow: hidden;
}

.service-function-container .img-display .img-block>img {
    width: 100%;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    display: none;
}

.service-function-container .img-display .img-block>img.active {
    display: block;
}

.service-function-container .functions {
    list-style: none;
}

.service-function-container .functions>li {
    margin-bottom: 30px;
}

.service-function-container .functions>li>.title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 60px;
    cursor: pointer;
}

.service-function-container .functions>li>.title::before {
    content: '\002B';
    width: 36px;
    height: 36px;
    font-size: 30px;
    color: #FFB100;
    background-color: #000000;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-function-container .functions>li.active>.title::before {
    content: '\2212';
}

.service-function-container .functions>li>.des {
    margin-top: 0;
    padding-left: 60px;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    max-height: 0;
    transition: all .3s ease;
    overflow: hidden;
}

.service-function-container .functions>li.active>.des {
    max-height: 1000px !important;
    margin-top: 30px;
}

.service-feature-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    list-style: none;
}


.service-feature-list>li {
    width: 48%;
    position: relative;
    border-radius: 20px;
    margin-bottom: 70px;
    padding: 50px;
}

.service-feature-list>li::before {
    background-color: #FFFCF2;
}

.service-feature-list>li>* {
    position: relative;
}

.service-feature-list>li>h6 {
    position: relative;
    padding-left: 30px;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-feature-list>li>h6::before {
    content: '';
    left: 0;
    top: 50%;
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent;
    border-radius: 100%;
    border: 1px solid #000000;
    pointer-events: none;
    transform: translateY(-50%);
}

.service-feature-list>li>h6::after {
    content: '';
    left: 2px;
    top: 50%;
    position: absolute;
    width: 11px;
    height: 11px;
    background: #000000;
    border-radius: 100%;
    pointer-events: none;
    transform: translateY(-50%);
}

.service-feature-list>li>p {
    font-size: 1.25rem;
    font-weight: 400
}

.service-testimonial-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.service-testimonial-container>h2 {
    white-space: nowrap;
    padding-top: 150px;
}

.service-testimonial-container>h2>span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.service-testimonial-container .service-testimonial-list {
    width: 100%;
    max-width: 950px;
    margin-left: 30px;
    list-style: none;
    /* max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden; */
    height: auto;
    /* padding: 10px; */
}

.service-testimonial-container .service-testimonial-list>li {
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
}

.service-testimonial-container .service-testimonial-list>li>div {
    padding: 70px 50px 50px 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.service-testimonial-container .service-testimonial-list>li>div::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    width: 40px;
    height: 40px;
    background: url('/assets/img/icon-quote-open.svg') center/contain no-repeat;
}

.service-testimonial-container .service-testimonial-list>li .comment {
    font-size: 1.25rem;
    font-weight: 600;
}

.service-testimonial-container .service-testimonial-list>li .writer {
    font-size: .9375rem;
    font-weight: 400;
    margin-top: 20px;
}

.service-testimonial::after {
    background-color: #EFFAFA;
    height: 75% !important;
    top: 100px !important;
}

.service-coming-soon {
    text-align: center;
    padding-top: 100px;
    font-weight: 400;
    font-size: 1.25rem;
}

.service-course-intro {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
}

.service-course-intro h1 {
    font-size: 66px;
    font-weight: 500;
    text-shadow: 0 .03em 0 #707070;
    position: absolute;
    left: 0;
    bottom: -10%;
    width: 100%;
    line-height: 1;
}

.service-course-intro h1>svg>text>tspan {
    text-shadow: 2px 0 #000, 2px 2px #000, 2px -2px #000, 0 2px #000, 0 -2px #000, -2px 0 #000, -2px 2px #000, -2px -2px #000;
    fill: #ffffff;
}

.service-course-intro h1>svg {
    width: 87%;
}

.service-course-intro--left {
    padding-top: 10%;
    width: 40%;
}

.service-course-intro--left p {
    font-size: 1rem;
    font-weight: 400;
}

.service-course-intro--right {
    width: 56%;
}

.service-course-intro--right>img {
    width: 100%;
    height: auto;
}

.service-course-function>h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-course-function--wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    counter-reset: count;
}

.service-course-function--block {
    border-radius: 20px;
    border: 1px solid #000000;
    border-left-width: 20px;
    overflow: hidden;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    width: 48%;
}

.service-course-function--block:first-of-type {
    width: 100%;
}

.service-course-function--block>.block-img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 60.94% 0 0 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-course-function--block>.block-img::before {
    counter-increment: count;
    content: counter(count);
    width: 55px;
    height: 55px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 2;
    font-size: 30px;
    position: absolute;
    top: 30px;
    left: 20px;
    text-align: center;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-course-function--block>.block-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #FFE7BC;
    z-index: -1;
}

.service-course-function--block:first-of-type>.block-img {
    padding: 28.66% 0 0 0;
}

.service-course-function--block:nth-of-type(1)>.block-img {
    background-image: url('/assets/img/service-03-image1.png');
}

.service-course-function--block:nth-of-type(2)>.block-img {
    background-image: url('/assets/img/service-03-image2.png');
}

.service-course-function--block:nth-of-type(3)>.block-img {
    background-image: url('/assets/img/service-03-image3.png');
}

.service-course-function--block:nth-of-type(4)>.block-img {
    background-image: url('/assets/img/service-03-image4.png');
}

.service-course-function--block:nth-of-type(5)>.block-img {
    background-image: url('/assets/img/service-03-image5.png');
}

.service-course-function--block>.block-info {
    background-color: #F3F3F3;
    width: 100%;
    border-top: 2px dashed #000000;
    padding: 3em 1.5em;
    height: 100%;
}

.service-course-function--block:first-of-type>.block-info {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.service-course-function--block>.block-info>h6 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.service-course-function--block>.block-info>p {
    font-size: 1rem;
    font-weight: 400;
}

.service-course-function--block:first-of-type>.block-info>p {
    max-width: 416px;
}

.site-modal#modal-course-plan-form {
    padding: 10px 0;
}

.site-modal#modal-course-plan-form .modal-content {
    padding: 20px;
    width: 100%;
}

.plan-form {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    max-width: 877px;
    background-color: white;
    border-radius: 8px;
}

.plan-form .form-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.plan-form .form-container>* {
    width: 45%;
}

.plan-block .custom-select {
    height: 50px;
    z-index: 9;
    width: 90%;
    margin: 30px auto 50px;
}

.plan-block .custom-select .selector {
    text-align: center;
    justify-content: center;
    font-weight: 500 !important;
    border-radius: 10px;
    border-width: 3px;
    transition: border-radius .3s ease-in-out;
}

.plan-block .custom-select .options {
    border-width: 3px;
    border-radius: 0 0 10px 10px;

}

.plan-block .custom-select .options>* {
    font-size: .9375rem;
    font-weight: 500;
}

.plan-block .custom-select.active .selector {
    border-radius: 10px 10px 0 0;
}

.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .custom-select .selector,
.plan-section-tab>.plan-details-tab:nth-child(3) .plan-block .custom-select .options>* {
    color: #ffffff !important;
}

.plan-section-tab>.plan-details-tab:nth-child(3) .custom-select .selector::after {
    border-color: #ffffff transparent transparent transparent;
}

.auth.main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth footer {
    background-color: transparent;
    margin-top: 50px;
}

.auth .contact-form {
    max-width: 900px;
    border: 3px solid #000000;
    margin-bottom: 0;
}

.auth-footer {
    width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.auth-footer * {
    font-size: 12px;
    font-weight: 400;
}

.auth-footer .recaptcha {
    color: #747474;
    margin-bottom: 30px;
}

.auth-footer .footer-copyright {
    color: #000000;
}

.auth-footer .recaptcha a {
    color: inherit;
    text-decoration: underline;
}

.auth .form-container {
    display: none !important;
}

.auth .form-container.show {
    display: block !important;
}

.auth-container {
    display: flex;
    justify-content: space-between;
}

.auth-container .auth-title-container {
    margin-right: 1.5em;
}

.auth-container .auth-title-container>h2 {
    text-wrap: nowrap;
}

.auth-container .auth-title-container>a {
    color: #24667D;
    font-size: .875rem;
    font-weight: 500;
}

.auth-container .auth-title-container>p {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.8;
}

.auth-container .auth-title-container>p#sent-remind {
    display: none;
    margin-top: 10px;
}

.auth-container .auth-title-container>p#sent-remind.show {
    display: block;
}

.auth-container .auth-form-container {
    flex: 1;
    max-width: 400px;
}

.auth-container .auth-form-container input.pw {
    padding-right: 4em;
}

.btn-view-password {
    position: absolute;
    bottom: 39px;
    right: 2em;
    width: 20px;
    height: 15px;
    cursor: pointer;
    z-index: 2;
    background: url('/assets/icon/pw-hide.svg') center/contain no-repeat;
}

.btn-view-password.show {
    background: url('/assets/icon/pw-view.svg') center/contain no-repeat;
}

.checkbox-wrapper {
    width: 100%;
    padding-left: 25px;
    margin-bottom: 25px;
}

.checkbox-wrapper>input {
    display: none;
}

.checkbox-wrapper .checkbox {
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border: 2px solid #FFB100;
    cursor: pointer;
    top: 0.45em;
    z-index: 2;
}

.checkbox-wrapper>input:checked~.checkbox {
    background-color: #FFB100;
}

.checkbox-wrapper>input:checked~.checkbox::before {
    content: '\2713';
    font-size: 15px;
    font-weight: 500;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-wrapper .check-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.auth-container .auth-form-container .terms-remark {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.auth-container .auth-form-container .terms-remark>a {
    color: #24667D;
    display: inline;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

.auth-container .auth-form-container .btn-select-plan {
    margin-left: 0;
    margin-right: 0;
}

.btn-back {
    display: block;
    position: relative;
    margin-bottom: 40px;
    font-size: .875rem;
    cursor: pointer;
    padding-left: 30px;
    font-weight: 400;
}

.btn-back::before {
    content: '\2039';
    font-size: 30px;
    position: absolute;
    top: 8px;
    font-weight: 100;
    left: 0;
    line-height: 0;
}

.input-suffix {
    position: absolute;
    bottom: 39px;
    right: 1em;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

input.domain {
    padding-right: 125px !important;
}

.input-row .input-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.input-row .input-top>a {
    color: #24667D;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: .5em;
    display: block;
    text-decoration: none;
}

.input-row>label,
.input-row .input-top>label {
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: .5em;
    display: block;
}


.contact-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    margin: 10% auto;
    align-items: flex-start;
}

.contact-container>div {
    width: 50%;
}

.contact-container .contact-info {
    padding-right: 10%;
}

.contact-container .contact-info h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 50px;
}

.contact-container .contact-info .btn-wts {
    margin-left: 0;
    color: #ffffff;
}

.contact-container .contact-info .btn-wts>div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-container .contact-info .btn-wts>div>span {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url('/assets/img/plan-wts.svg') center/contain no-repeat;
}

.contact-container .contact-info .btn-wts::after {
    background-color: #39AE41;
}

.contact-container .contact-form {
    margin: 0 !important;
}

.contact-container p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.contact-container .contact-info>p {
    margin: 50px 0;
}

.contact-container .contact-info__list>a {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-container .contact-info__list>a>img {
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
    display: block;
}

.contact-container .map-container {
    width: 100%;
    height: 270px;
}

.contact-container .map-container>div {
    width: 100%;
    height: 100%;
}

.faq-new::after {
    content: '';
    width: 100%;
    height: 330px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/assets/img/faq-bg.png') center/cover no-repeat;
}

.faq-new>* {
    z-index: 2;
}

.faq-new>.container {
    width: 90%;
    max-width: 1400px;
    margin: 150px auto 10%;
}

.faq-new h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 45px;
}

.faq-viewer {
    border-radius: 30px;
    padding: 50px;
}

.faq-tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.faq-tabs>.btn-select-plan {
    width: 30%;
    margin-bottom: 20px;
    max-width: unset;
}

.faq-tabs>.btn-select-plan::after {
    background-color: #CCCCCC;
}

.faq-tabs>.btn-select-plan.active::after {
    background-color: #FBB12B;
}

.faq-tabs>.btn-select-plan:nth-child(2).active::after {
    background-color: #3DE07E;
}

.faq-tabs>.btn-select-plan:nth-child(3).active::after {
    background-color: #24667D;
}

.faq-tabs>.btn-select-plan:nth-child(3).active>div {
    color: #ffffff;
}

.faq-tabs>.btn-select-plan:nth-child(4).active::after {
    background-color: #BC77F0;
}

.faq-page {
    display: none;
    margin-top: 50px;
}

.faq-page.show {
    display: flex;
    align-items: flex-start;
}

.faq-side-menu {
    width: 100%;
    max-width: 200px;
    list-style: none;
    position: relative;
    display: block;
    z-index: 5;
}

.faq-side-menu>li {
    display: block;
    list-style: none;
    width: 100%;
    margin-bottom: 20px;
}

.faq-side-menu .menu-tab {
    width: 100%;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-side-menu .menu-tab:hover,
.faq-side-menu>li.active .menu-tab {
    background-color: #1B718A;
    color: #ffffff;
}

.faq-side-menu .menu-tab.dropdown-parent::after {
    content: '';
    font-size: 30px;
    position: absolute;
    top: 0;
    right: 20px;
    transform: rotate(0);
    background: url('/assets/icon/down-arrow.svg') center/contain no-repeat;
    width: 13px;
    height: 100%;
    transition: transform .3s ease-in-out;
}

.faq-side-menu>li.active .menu-tab.dropdown-parent::after {
    transform: rotate(180deg);
}

.faq-side-menu .menu-tab>.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    margin-right: 20px;
}

.faq-side-menu .menu-tab:hover>.icon,
.faq-side-menu .menu-tab:hover.dropdown-parent::after,
.faq-side-menu>li.active .menu-tab>.icon,
.faq-side-menu>li.active .menu-tab.dropdown-parent::after {
    filter: brightness(0) invert(1);
}

.faq-side-menu .menu-dropdown {
    padding-left: 40px;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;

}

.faq-side-menu>li.active .menu-dropdown {
    max-height: 3000px;
    pointer-events: all;
    transition: max-height .3s ease-in-out;
}

.faq-side-menu .menu-dropdown>li {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.faq-side-page {
    flex: 1;
    margin-left: 100px;
    display: none;
}

.faq-side-page.show {
    display: block;
}

.faq-side-page h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-side-page .text-list {
    list-style: none;
}

.faq-side-page .text-list>li {
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 14px;
}

.faq-list {
    list-style: none;
}

.faq-list>li {
    margin-bottom: 30px;
}

.faq-list>li>.title {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.8;
}

.faq-list>li>.title::before {
    content: '\002B';
    width: 20px;
    height: 20px;
    font-size: 15px;
    font-weight: 900;
    color: #FFB100;
    background-color: #000000;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.8;
    transform: translateY(5px);
}

.faq-list>li.active>.title::before {
    content: '\2212';
}

.faq-list>li>.des {
    margin-top: 0;
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
}

.faq-list>li.active>.des {
    max-height: 1000px !important;
    margin-top: 10px;
    transition: margin-top .2s ease-in-out, max-height .3s ease-in-out;
}

/* -------- Select CSS ------- */
.custom-select select {
    display: none !important;
}

.custom-select .selector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 1em;
    padding-right: 3em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: .9375rem;
    border: 2px solid #000000;
    background-color: #ffffff;
}

.custom-select .selector::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    -webkit-transform: translateY(-50%) rotate(0);
    -moz-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    -o-transform: translateY(-50%) rotate(0);
    transform: rotate(0deg);
    top: 50%;
    right: 1em;
    transform: translateY(-50%) rotate(0);
    transition: transform .3s ease-in-out;
}

.custom-select.active .selector::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.custom-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-top: 0 !important;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease-in-out, opacity .15s ease-in-out;
}

.custom-select.active .options {
    max-height: 50vh;
    opacity: 1;
    pointer-events: all;
}

.custom-select .options>* {
    width: 100%;
    padding: .5em 1em;
    cursor: pointer;
}

.custom-select .options>*:hover {
    background-color: #295CFF;
    color: #ffffff;
}

.custom-select .options>*.selected {
    display: none;
}

.custom-select.hideOption .selector {
    cursor: auto;
}

.custom-select.hideOption .selector::after {
    display: none;
}

.text-view {
    width: 90%;
    margin: 80px auto 10%;
}

.text-view * {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.text-view h1 {
    font-size: 1.875rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.text-view h2 {
    font-size: 1.875rem;
    font-weight: 500;
}

.list-num-section>li {
    margin-bottom: 30px;
}

.list-num,
.list-num-section,
.list-alpha,
.list-roman {
    list-style: none;
    counter-reset: count;
}

.text-view h3 {
    font-size: 1.375rem;
    font-weight: 500;
}

.list-num-section>li>h3::before {
    counter-increment: count;
    content: counter(count) ". ";
    position: relative;
    display: inline;
}

.list-num>li,
.list-alpha>li,
.list-roman>li {
    position: relative;
    padding-left: 3ch;
}

.list-num>li::before {
    counter-increment: count;
    content: counter(count) ". ";
    position: absolute;
    top: 0;
    left: 0;
}

.list-num.bold>li::before {
    font-weight: 500;
}

.list-alpha>li::before {
    counter-increment: count;
    content: counter(count, lower-alpha) ". ";
    position: absolute;
    top: 0;
    left: 0;
}

.list-roman>li::before {
    counter-increment: count;
    content: counter(count, lower-roman) ". ";
    position: absolute;
    top: 0;
    left: 0;
}

.list-num>li>h4 {
    font-size: 1rem;
    font-weight: bold;
}

.text-table {
    width: 100%;
    list-style: none;
}

.text-table>li {
    display: flex;
    width: 100%;
}

.text-table>li>div {
    padding: 10px 0;
}

.text-table>li>div:first-of-type {
    width: 190px;
    font-weight: 500;
}

.text-table>li>div:last-of-type {
    flex: 1;
}

.text-view p>a,
.text-view li>a {
    text-decoration: underline;
}

.text-view strong {
    font-weight: 500;
}

.whatsapp-widget {
    z-index: 49;
    width: 5vw;
    height: 5vw;
    border-radius: 100%;
    background-color: #25D366;
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 15px;
    max-width: 64px;
    max-height: 64px;
    min-width: 40px;
    min-height: 40px;
}

.whatsapp-widget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: url('/assets/img/plan-wts.svg') center/contain no-repeat;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
}

/* --------- Editor --------- */
/* Editor */
.editor-text {
    font-size: 16px;
}

.ql-align-justify {
    text-align: justify;
}

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.editor-text * {
    line-height: 1.8;
    font-size: 1em;
    font-weight: 400;
}

.editor-text strong,
.editor-text strong * {
    font-weight: 700 !important;
}

.editor-text p {
    font-size: 1em;
}

.editor-text h1 {
    font-size: 2em;
    font-weight: 700;
}

.editor-text h2 {
    font-size: 1.5em;
    font-weight: 500;
}

.editor-text h3 {
    font-size: 1.17em;
    font-weight: 500;
}

.editor-text h4 {
    font-size: 1em;
    font-weight: 400;
}

.editor-text ul,
.editor-text ol {
    list-style: none;
}

.editor-text ul>li {
    padding-left: 20px;
    position: relative;
}

.editor-text ul>li::before {
    content: '';
    position: absolute;
    top: 0.7em;
    width: 0.3em;
    height: 0.3em;
    background-color: #3D3F4D;
    border-radius: 100%;
    transform: translateX(-20px);
}

.editor-text ol {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.editor-text ol>li {
    position: relative;
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-0;
}

.editor-text ol>li::before {
    content: counter(list-0, decimal) '. ';
    display: inline-block;
    line-height: inherit;
    font-size: inherit;
    color: inherit;
    margin-right: 10px;
}

.editor-text ol>li.ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-1;
    padding-left: 1em;
}

.editor-text ul>li.ql-indent-1 {
    padding-left: 40px;
}

.editor-text ol>li.ql-indent-1::before {
    content: counter(list-1, lower-alpha) '. ';
}

.editor-text ol>li.ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-2;
    padding-left: 2em;
}

.editor-text ul>li.ql-indent-2 {
    padding-left: 60px;
}

.editor-text ol>li.ql-indent-2::before {
    content: counter(list-2, lower-roman) '. ';
}

.editor-text ol>li.ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-3;
    padding-left: 3em;
}

.editor-text ul>li.ql-indent-3 {
    padding-left: 80px;
}

.editor-text ol>li.ql-indent-3::before {
    content: counter(list-3, lower-decimal) '. ';
}

.editor-text ol>li.ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
    counter-increment: list-4;
    padding-left: 4em;
}

.editor-text ul>li.ql-indent-4 {
    padding-left: 100px;
}

.editor-text ol>li.ql-indent-4::before {
    content: counter(list-4, lower-alpha) '. ';
}

.editor-text ol>li.ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
    counter-increment: list-5;
    padding-left: 5em;
}

.editor-text ul>li.ql-indent-5 {
    padding-left: 120px;
}

.editor-text ol>li.ql-indent-5::before {
    content: counter(list-5, lower-roman) '. ';
}

.editor-text ol>li.ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
    counter-increment: list-6;
    padding-left: 6em;
}

.editor-text ul>li.ql-indent-6 {
    padding-left: 140px;
}

.editor-text ol>li.ql-indent-6::before {
    content: counter(list-6, lower-decimal) '. ';
}

.editor-text ol>li.ql-indent-7 {
    counter-reset: list-8 list-9;
    counter-increment: list-7;
    padding-left: 7em;
}

.editor-text ol>li.ql-indent-7::before {
    content: counter(list-7, lower-alpha) '. ';
}

.editor-text ul>li.ql-indent-7 {
    padding-left: 160px;
}

.editor-text ol>li.ql-indent-8 {
    counter-reset: list-9;
    counter-increment: list-8;
    padding-left: 8em;
}

.editor-text ul>li.ql-indent-8 {
    padding-left: 180px;
}

.editor-text ol>li.ql-indent-8::before {
    content: counter(list-8, lower-roman) '. ';
}

.editor-text img {
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

/* --------- Blog --------- */
.blog-list {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blog-list>* {
    width: 32%;
    width: calc((100% - 60px) / 3);
    margin-bottom: 5%;
}

.blog-list>*:not(:nth-of-type(3n)) {
    margin-right: 30px;
}

.blog-loading {
    height: auto;
    position: relative;
}

.blog-loading::after {
    content: '';
    width: 100%;
    padding: 55% 0 0 0;
    background-color: #DDDDDD;
    position: relative;
    display: block;
    border-radius: 10px;
}

.no-blog {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    display: none;
}

.no-blog.show {
    display: block;
}

.blog-block .blog-img {
    width: 100%;
    padding: 55% 0 0 0;
    background-color: #ffffff;
    position: relative;
    display: block;
    border-radius: 10px;
    border: 4px solid #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-block .blog-title {
    display: block;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 10px 0;
}

.blog-block .blog-date {
    font-weight: 400;
    font-size: 1rem;
}

.post-main {
    margin-top: 150px;
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.no-post {
    text-align: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 400;
}

.post-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: .5em;
}

.post-date {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.template,
.item-hide {
    display: none !important;
}

.success-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    margin: 10% auto;
    align-items: center;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh)* 100);
}

.success-container .plan-custom-block {
    max-width: 620px;
}

.success-container strong {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.875rem;
    font-weight: 700;
}

.success-container strong::after {
    content: '';
    position: relative;
    display: block;
    width: 1.7em;
    height: 1.7em;
    background: url('/assets/img/success-check.svg') center/contain no-repeat;
    margin-left: 1em;
}

.success-container .plan-custom-block>p {
    margin-top: 3em;
}

/* ------CSS Media Query------ */

@media(max-width:1400px) {

    .nav-list .nav-dropdown,
    .nav-list>a {
        margin: 0 1.25em;
    }

    .banner-col {
        width: 50%;
        width: calc(60% - (1400px - 100vw) / 3);
    }

    .banner-col:first-of-type {
        width: 50%;
        width: calc(40% + (1400px - 100vw) / 3);
    }

    .service-banner .banner-container {
        justify-content: space-between;
    }

    .service-banner .banner-container>div.service-banner-img {
        width: 100%;
        max-width: 550px;

    }

    .service-banner .banner-container>div.banner-title-container {
        width: auto;
        flex: 1;
    }

    .faq-tabs>.btn-select-plan>div {
        font-size: 1rem;
    }
}

/* ------Mobile------ */
@media(max-width:1280px) {
    .plan-special-text {
        order: 1;
        width: 65%;
    }

    .plan-special-link {
        order: 3;
        width: 100%;
        margin-top: 1.5em;
    }

    .plan-special-img {
        order: 2;
        width: 35%;
        max-width: 340px;
    }

    .plan-special-block {
        flex-wrap: wrap;
    }

    .service-tab-container .service-tab>.btn-select-plan {
        width: 90%;
    }

    .service-tab-container .service-tab>.btn-select-plan>div {
        font-size: 1rem;
    }

    .blog-list>* {
        width: 48%;
        width: calc((100% - 30px) / 2);
    }

    .blog-list>*:not(:nth-of-type(3n)) {
        margin-right: 0;
    }

    .blog-list>*:not(:nth-of-type(2n)) {
        margin-right: 30px;
    }
}

@media(max-width:1200px) {
    .nav-menu {
        display: block;
    }

    .nav-logo {
        z-index: 1;
    }

    .mobile-nav {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vhfull, 1vh) * 100);
        visibility: hidden;
        pointer-events: none;
    }

    nav.mobile .main-nav {
        visibility: visible;
    }

    nav.active .main-nav {
        pointer-events: all;
    }

    .nav-bg {
        z-index: -1;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #FFB100;
        /* transition: transform .5s cubic-bezier(0.8, 0.17, 0.23, 0.8); */
        /* transform: translate3d(105%, 0, 0); */
    }

    .nav-list {
        height: auto;
        max-height: 100vh;
        max-height: calc(100vh - 72px);
        max-height: calc(var(--vh, 1vh) * 100 - 72px);
        padding: 5vh 0;
        padding: calc(var(--vh, 1vh) * 5) 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        /* max-height: 600px; */
        margin-top: 72px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .nav-list>a,
    .nav-list .nav-dropdown {
        /* width: 40%; */
        width: 100%;
        display: block;
        overflow: hidden;
        margin: 0.5em 5%;
    }

    .nav-list a {
        font-size: 1.75rem;
        letter-spacing: .15rem;
        font-weight: 300;
    }

    .nav-list a>div>span {
        /* letter-spacing: .25rem;
        font-size: 2.5rem;
        font-weight: 400; */
    }

    a.nav-openshop {
        display: none;
    }

    .nav-dropdown .dropdown-container {
        display: none !important;
    }

    .function-nav-list__mobile {
        display: block;
    }

    .service-banner .banner-container>div.service-banner-img {
        width: 50%;
    }


    .faq-tabs>.btn-select-plan {
        width: 45%;
        max-width: unset;
        margin-left: 0;
        margin-right: 0;
    }

    .faq-side-page {
        margin-left: 50px;
    }
}

@media(max-width:1024px) {
    .feature-iconrow {
        flex-direction: column;
    }

    .feature-icon {
        width: 75%;
        max-width: 300px;
    }

    .feature-des {
        width: 100%;
    }

    .plan-section-tab {
        flex-direction: column;
    }

    .plan-details-tab {
        width: 100%;
        flex-direction: row;
    }

    .plan-details-tab .ratio-box {
        padding: 170% 0 0 0;
    }

    .plan-details-tab .ratio-obj>div>img {
        width: 100%;
        height: auto;
    }

    .plan-details-letter {
        width: 25%;
        max-width: 180px;
    }

    .plan-details-list {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        margin: 0 auto;
    }

    .plan-details-list h5 {
        width: 50%;
    }

    .plan-details-title {
        text-align: left;
        width: 90%;
        margin: 0 auto;
    }

    .plan-details-box h4 {
        margin-top: .5em;
    }

    .plan-details-box h6 {
        margin-bottom: 3em;
    }

    .plan-section .plan-details-remarks {
        text-align: center;
        margin-top: 1em;
    }

    .plan-special-text h3 {
        font-size: 1.5rem;
    }

    .service-function-container {
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-function-container>* {
        width: 100%;
    }

    .service-function-container .img-display {
        max-width: 600px;
        margin-bottom: 30px;
    }
}

@media(max-width:991px) {
    .banner-col {
        width: 40%;
    }

    .banner-col:first-of-type {
        width: 60%;
    }

    .feature-section p {
        font-size: 1rem;
    }

    .feature-des-bubble h3 {
        font-size: 1.5rem;
        letter-spacing: .5rem;
    }

    .feature-block .feature-title::before {
        width: 50px;
        height: 50px;
    }

    .feature-block .feature-title {
        padding-left: 70px;
        font-size: 1.5rem;
    }

    .feature-des-bubble h4 {
        font-size: 1rem;
        letter-spacing: .4rem;
    }

    .whatsapp-section-row {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 3em;
    }

    .whatsapp-section-des {
        width: 100%;
        /* margin-right: 10%; */
    }

    .whatsapp-section-img {
        width: 95%;
        margin-right: 5%;
        max-width: 300px;
    }

    .plan-special-text h3 {
        font-size: 1.4rem;
    }

    .screenshot-section-text .bg-btn {
        font-size: 1rem;
    }

    .service-tab-container .service-tab {
        width: 50%;
    }

    .service-tab-container .service-tab>.arrow {
        display: none;
    }

    .service-tab-container .service-tab.active>.btn-select-plan::after {
        transform: translate(0, 0);
    }

    .service-feature-list>li>h6 {
        font-size: 1.25rem;
    }

    .service-feature-list>li>p {
        font-size: 1rem;
    }

    .service-testimonial-container .service-testimonial-list>li .comment {
        font-size: 1.125rem;
    }

    .service-testimonial-container .service-testimonial-list>li>div::before {
        top: 20px;
        left: 30px;
        width: 30px;
        height: 30px;
    }

    .service-testimonial-container .service-testimonial-list>li>div {
        padding: 54px 30px 30px 70px;
        min-height: 200px;
    }

    .no-blog {
        font-size: 1.125rem;
    }
}

@media(max-width:860px) {
    .plan-details-list h5 {
        width: 100%;
    }

    .plan-special-text h3 {
        font-size: 1.25rem;
    }

    .screenshot-section-container {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-section-text {
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 1.5em;
    }

    .screenshot-section-text .bg-btn {
        width: 33%;
    }

    .screenshot-section-screen {
        width: 100%;
        max-width: 480px;
    }

    .plan-head-mobile {
        display: block;
    }

    .plan-view .plan-head {
        display: none;
    }

    .plan-view .plan-head-holder {
        padding: 0;
    }

    .plan-body .plan-body__row>.title-cell,
    .plan-body .plan-body__row>.data-cell-container {
        width: 50%;
    }

    .plan-body .plan-body__row>.data-cell-container>div {
        width: 100%;
        display: none;
    }

    .plan-view[data-active="a"] .plan-body .plan-body__row>.data-cell-container>div.plan-a-cell,
    .plan-view[data-active="b"] .plan-body .plan-body__row>.data-cell-container>div.plan-b-cell,
    .plan-view[data-active="c"] .plan-body .plan-body__row>.data-cell-container>div.plan-c-cell {
        display: flex;
    }

    .plan-body>li {
        padding: 1em;
    }

    .plan-body .plan-body__row {
        padding: 1.5em 1em;
    }

    .plan-custom-wrapper {
        flex-direction: column;
        justify-content: flex-start;
    }

    .plan-custom-wrapper>div {
        width: 100%;
        margin-top: 3em;
    }

    .auth-container {
        flex-direction: column;
        justify-content: flex-start;
    }

    .auth-container .auth-title-container {
        margin-right: 0;
        margin-bottom: 2em;
    }

    .auth-container .auth-form-container {
        max-width: unset;
    }

    .contact-container {
        margin: 20% auto;
        flex-direction: column;
    }

    .contact-container>div {
        width: 100%;
    }

    .contact-container .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .service-page>section,
    .blog-list {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .service-course-intro {
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .service-course-intro h1 {
        position: relative;
        bottom: unset;
        margin-bottom: 25px;
    }

    .service-course-intro h1>svg {
        width: 100%;
    }

    .service-course-intro--left {
        width: 100%;
        padding-top: 0;
        margin-bottom: 1.5em;
    }

    .service-course-intro--right {
        width: 100%;
    }

    .service-course-function>h2 {
        margin-bottom: 0;
    }

    .service-course-function--block:first-of-type>.block-info>p {
        max-width: unset;
    }

    .service-course-function--block>.block-img::before {
        top: 15px;
        left: 15px;
        font-size: 25px;
        width: 45px;
        height: 45px;
    }

    .service-course-function--block>.block-info {
        padding: 25px 20px;
    }

    .service-course-function--block>.block-info>h6 {
        font-size: 1.5rem;
    }

    .service-course-function--block>.block-info>p {
        font-size: .9375rem;
    }

    .service-course-function--block {
        margin: 15px 0;
    }

    .blog-list>* {
        width: 100%;
        margin-bottom: 30px;
    }

    .blog-list>*:not(:nth-of-type(2n)) {
        margin-right: 0;
    }

    .post-main {
        margin-top: 120px;
    }

    .site-modal.normal-modal-content .modal-content>strong {
        font-size: 1.25rem;
    }

    #modal-openshop .function-nav-item>div>img {
        height: 50px;
    }

    #modal-openshop .function-nav-item>div>h4 {
        font-size: 1rem;
        margin: 15px 0;
    }

    #modal-openshop .function-nav-item>div>small {
        font-size: .875rem;
    }
}

@media(max-width:680px) {
    header .nav-logo {
        width: 46px;
        height: 59px;
    }

    header .nav-logo::after {
        background-position: left center;
        background-size: cover;
    }

    .banner, .banner-placeholder {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    .service-banner, .service-banner-placeholder {
        height: 80vh;
        height: calc(var(--vh, 1vh) * 80);
    }

    .feature-des-bubble h3 {
        font-size: 1.4rem;
        letter-spacing: .4rem;
    }

    .feature-block .feature-title {
        font-size: 1.4rem;
    }

    .feature-des-bubble h4 {
        font-size: .95rem;
        letter-spacing: .25rem;
    }

    .whatsapp-section-row h4 {
        font-size: 1rem;
        letter-spacing: .1rem;
    }

    .screenshot-section-text .bg-btn {
        width: 50%;
    }

    .plan-section-container>h3 {
        line-height: 3.5;
        font-size: 1.5rem;
    }

    .plan-section-container>p {
        font-size: 1rem;
    }

    .plan-block .title-box>h3,
    .plan-block .plan-details>h4 {
        font-size: 1.25rem;
    }

    .plan-block .hot-plan>*,
    .btn-select-plan>* {
        font-size: 1rem;
    }

    .service-page .service-basic>h1,
    .service-page h2 {
        font-size: 1.5rem;
    }

    .service-testimonial-container>h2>span {
        font-size: .875rem;
    }

    .service-page .service-basic .plan-custom-wrapper>div h4,
    .service-function-container .functions>li>.title {
        font-size: 1.125rem;
    }

    .service-page .service-basic .plan-custom-wrapper>div h4>span {
        font-size: 45px;
    }

    .service-function-container .functions>li>.title::before {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .service-function-container .functions>li>.title,
    .service-function-container .functions>li>.des {
        padding-left: 40px;
    }

    .service-page .service-function>h2 {
        margin-bottom: 50px;
    }

    .faq-viewer {
        padding: 50px 20px;
    }

    .faq-tabs>.btn-select-plan {
        width: 100%;
    }

    .faq-side-menu>li .menu-tab>span {
        position: absolute;
    }

    .faq-side-menu .menu-tab>.icon {
        margin-right: 0;
    }

    .faq-side-menu {
        max-width: 50px;
    }

    .faq-side-menu .menu-tab {
        padding: 10px;
        width: 40px;
    }

    .faq-side-menu .menu-dropdown>li {
        padding: 10px;
    }

    .faq-side-menu .menu-dropdown {
        padding-left: 0;
        position: absolute;
        top: 0;
        left: 100%;
        box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
        border-radius: 5px;
        z-index: 10;
        background: #ffffff;
        width: 150px;
        display: none;
        max-height: unset;
    }

    .faq-side-menu>li .menu-dropdown.open {
        display: block;
    }

    .faq-side-menu .menu-tab.dropdown-parent::after {
        display: none;
    }

    .faq-side-menu>li .menu-tab>span {
        position: absolute;
        left: 100%;
        top: 0;
        z-index: 9;
        background: #09252e;
        color: #ffffff;
        white-space: nowrap;
        padding: 10px;
        border-radius: 5px;
        font-size: 12px;
        transform: translateX(10px) scale(0);
        pointer-events: none;
        transform-origin: center;
        transition: transform .3s ease-in-out;
    }

    .faq-side-menu>li .menu-tab:hover>span {
        transform: translateX(10px) scale(1);
    }

    .faq-side-page {
        margin-left: 20px;
    }

    .faq-side-page h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    #modal-openshop .function-nav-item {
        width: 100%;
    }
}

@media(max-width:540px) {
    .bg-btn {
        padding: .75em 1.5em;
    }

    .nav-list a {
        font-size: 1.5rem;
        letter-spacing: .125rem;
    }

    .nav-list a>div>span {
        /* letter-spacing: .2rem;
        font-size: 2.25rem; */
    }

    h1.svgtext>svg text {
        font-size: 16px;
        transform: translateY(2px);
    }

    .service-banner h1.svgtext>svg text {
        font-size: 30px !important;
    }

    .feature-section p {
        font-size: .9rem;
    }

    .feature-des-bubble h3 {
        font-size: 1.3rem;
        letter-spacing: .3rem;
    }

    .feature-des-bubble h4 {
        font-size: .9rem;
        letter-spacing: .2rem;
    }

    .feature-block .feature-title::before {
        width: 35px;
        height: 35px;
    }

    .feature-block .feature-title {
        padding-left: 50px;
        font-size: 1.3rem;
    }

    .footer-copyright {
        font-size: .8rem;
        letter-spacing: .025rem;
    }

    .plan-section-container>h3 {
        line-height: 4.5;
        font-size: 1.25rem;
    }

    .function-nav-list__mobile>a {
        font-size: 1.125rem !important;
    }

    .plan-custom-wrapper>div>.content h4,
    .plan-custom-wrapper btn-select-plan>div {
        font-size: 1rem;
    }

    .plan-custom-wts .content h4 span {
        width: 0.8rem;
        height: 0.8rem;
        margin-right: 1em;
    }

    .service-tab-container .service-tab>.btn-select-plan>div {
        font-size: .875rem;
    }

    .service-tab-container {
        margin: 40px auto;
    }

    .service-testimonial-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .service-testimonial-container>h2 {
        padding-top: 0;
    }

    .service-testimonial::after {
        background-color: #EFFAFA;
        height: 100% !important;
        top: 0 !important;
    }

    .service-testimonial-container .service-testimonial-list {
        margin-left: 0;
        margin-top: 50px;
    }

    .service-feature-list>li {
        width: 100%;
        margin-bottom: 40px;
        padding: 30px;
    }

    .service-course-function--block {
        width: 100%;
    }

    .service-course-function--block>.block-info>h6 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .service-course-function--block:nth-of-type(1)>.block-img {
        padding: 60.94% 0 0 0;
        background-image: url('/assets/img/service-03-image1-resp.png');
    }

    .service-course-intro h1 {
        text-shadow: 0 .01em 0 #707070;
    }

    .service-course-intro h1>svg>text>tspan {
        text-shadow: 1px 0 #000, 1px 1px #000, 1px -1px #000, 0 1px #000, 0 -1px #000, -1px 0 #000, -1px 1px #000, -1px -1px #000;
    }

    .blog-list {
        padding-top: 0;
    }

    .no-blog {
        font-size: 1rem;
    }

    .blog-block .blog-title {
        font-size: 1rem;
    }

    .blog-block .blog-date {
        font-size: .875rem;
    }
}

@media(max-width:480px) {

    .banner-caption h4 {
        font-size: .9rem;
    }

    h1.svgtext>svg text {
        font-size: 18px;
        transform: translateY(4px);
    }

    .feature-des-bubble h3 {
        font-size: 1.25rem;
        letter-spacing: .3rem;
    }

    .feature-block .feature-title {
        font-size: 1.25rem;
    }

    .feature-des-bubble h4 {
        font-size: .9rem;
        letter-spacing: .2rem;
    }

    .plan-section-container>h3 {
        line-height: 6;
        font-size: 1rem;
    }

    .plan-custom-wrapper>div>.content>.btn-select-plan {
        display: none !important;
    }

    .plan-custom-wrapper>div {
        padding-bottom: 100px;
    }

    .plan-custom-wrapper>div .mobile {
        display: block;
    }

    .service-tab-container .service-tab {
        width: 100%;
    }

    .input-suffix {
        font-size: 10px;
    }
}

@media(max-width:420px) {
    .btn-checkbox {
        font-size: .95rem;
    }

    .nav-list a {
        font-size: 1.2rem;
        letter-spacing: .1rem;
    }

    .nav-list a>div>span {
        /* letter-spacing: .15rem;
        font-size: 2rem; */
    }

    h1.svgtext>svg text {
        font-size: 20px;
        transform: translateY(6px);
    }

    .footer-copyright {
        font-size: .75rem;
        letter-spacing: .01rem;
    }

    .function-nav-list__mobile>a {
        font-size: 1rem !important;
    }
}

@media(max-width:480px) {
    .plan-head-mobile .plan-info-block .plan-info__content>div {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-head-mobile .plan-info-block .plan-info__content>div>.price {
        margin-right: 0;
    }

    .plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>h2 {
        font-size: 15px;
    }

    .plan-view .plan-head-holder.squeeze .plan-head__item .price, .plan-view .plan-head-holder.squeeze .plan-head-mobile .plan-info-block .plan-info__content>div>.price {
        font-size: 18px;
        margin-top: 10px;
    }
}

@media(max-width:380px) {

    .banner-caption h4 {
        font-size: .8rem;
    }

    .feature-section p {
        font-size: .85rem;
    }

    .feature-des-bubble h3 {
        font-size: 1.1rem;
        letter-spacing: .25rem;
    }

    .feature-block .feature-title {
        font-size: 1.1rem;
        padding-left: 35px;
    }

    .feature-block .feature-title::before {
        width: 30px;
        height: 30px;
    }

    .feature-des-bubble h4 {
        font-size: .85rem;
        letter-spacing: .15rem;
    }

    .plan-section-container>h3 {
        line-height: 8;
        font-size: .9rem;
    }

    .plan-section-container>h3>svg {
        margin: 0 5px;
        min-width: 60px;
    }

    .service-page .service-basic .plan-custom-wrapper>div h4>span {
        font-size: 25px;
    }

    .service-page .service-basic .plan-custom-wrapper>div {
        flex-direction: column;
    }

    .service-testimonial-container .service-testimonial-list>li .comment {
        font-size: 1rem;
    }
}




/* Area */
@media(max-width: 991px), (max-height:768px) {

    .banner, .banner-placeholder {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    .service-banner, .service-banner-placeholder {
        height: 80vh;
        height: calc(var(--vh, 1vh) * 80);
    }
}

@media screen and (max-width: 1200px) and (max-height: 480px) {
    .nav-list a {
        font-size: 1.2rem;
        letter-spacing: .1rem;
    }

    .nav-list a>div>span {
        /* letter-spacing: .15rem;
        font-size: 2rem; */
    }
}

/* Screen Ratio */
@media(max-aspect-ratio: 4/3) {

    .banner-block {
        display: block;
        justify-content: unset;
        align-items: unset;
        width: 100%;
        height: 100%;
    }

    .banner-col {
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .banner-col:first-of-type {
        width: 100%;
    }

    .banner-col.anim {
        top: 0;
        bottom: unset;
        height: 70%;
        justify-content: flex-end;
    }

    .scr-hint {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .banner-title {
        max-width: 520px;
    }

    .banner-anim-obj {
        justify-content: flex-end;
    }

    .banner-caption {
        width: 90%;
        width: calc(100% - 24px);
    }

    .service-banner .banner-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service-banner .banner-container>div.service-banner-img {
        width: 100%;
        max-width: 550px;
        max-height: 60%;
    }

    .service-banner .service-banner-img>img {
        max-height: 100%;
    }

    .service-banner .banner-container>div.banner-title-container {
        width: 100%;
        max-width: 500px;
        margin-top: 4vh;
        flex: unset;
    }
}

@media(max-aspect-ratio: 1/2) {
    .banner-col {
        height: 60%;
    }

    .banner-col.anim {
        height: 60%;
    }
}


/* IE 10+ */

@media(-ms-high-contrast: none), (-ms-high-contrast: active) {
    .contained-btn:hover {
        color: #000;
    }

}

/* smartphones, touchscreens */

@media (hover: none) and (pointer: coarse) {}

/* stylus-based screens */

@media (hover: none) and (pointer: fine) {
    /* ... */
}

/* Nintendo Wii controller, Microsoft Kinect */

@media (hover: hover) and (pointer: coarse) {
    /* ... */
}

/* mouse, touch pad */

@media (hover: hover) and (pointer: fine) {
    /* ... */
}