body {
    overflow-x: hidden;
    font-family: Roboto, "Noto Sans TC", sans-serif;
}

.loading.svelte-5eyzd4 {
    position: fixed;
    bottom: 50px;
    left: 50%;
}

.logo.svelte-5eyzd4 {
    width: 160px;
    display: block;
}

.nav-background.svelte-oas7sq.svelte-oas7sq {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--navBackgroundColor);
    height: var(--navBackgroundHeight);
    z-index: 5;
}

a.svelte-oas7sq.svelte-oas7sq {
    color: inherit;
}

.left-block.svelte-oas7sq.svelte-oas7sq,
.right-block.svelte-oas7sq.svelte-oas7sq {
    top: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    color: var(--autoColor, var(--navTextColor, #000));
    min-height: 30px;
}

.left-block.svelte-oas7sq.svelte-oas7sq {
    margin: 18px 0 0 35px;
    left: 0;
}

.right-block.svelte-oas7sq.svelte-oas7sq {
    margin: 18px 0 0 0;
    right: 90px;
}

.slot.svelte-oas7sq.svelte-oas7sq {
    margin: 0 15px;
}

.icon-cw.svelte-oas7sq.svelte-oas7sq {
    font-size: 34px;
    color: inherit;
}

.ham.svelte-oas7sq.svelte-oas7sq {
    margin: 18px 35px 0 0;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 1003;
}

.ham.svelte-oas7sq .ham-button.svelte-oas7sq {
    width: 35px;
    height: 42px;
    position: relative;
}

.ham.svelte-oas7sq .ham-button b.svelte-oas7sq {
    width: 100%;
    height: 2px;
    background-color: var(--autoColor, var(--navTextColor, #000));
    position: absolute;
    transition: all 0.3s;
    left: 0;
}

.ham.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(1) {
    top: 4%;
}

.ham.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(2) {
    top: 27%;
}

.ham.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(3) {
    top: 50%;
}

.ham.svelte-oas7sq .ham-button.svelte-oas7sq:after {
    content: "menu";
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    color: var(--autoColor, var(--navTextColor, #000));
}

.ham.svelte-oas7sq .ham-button.svelte-oas7sq:before {
    content: "";
    opacity: 0;
    transition: all 0s;
    transition-delay: 0s;
}

.ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(1),
.ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(3) {
    left: -5%;
}

.ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(2) {
    left: 5%;
}

.ham.active.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(1) {
    top: 27%;
    transform: rotateZ(45deg);
    background-color: var(--menuTextColor);
}

.ham.active.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(2) {
    opacity: 0;
}

.ham.active.svelte-oas7sq .ham-button b.svelte-oas7sq:nth-child(3) {
    top: 27%;
    transform: rotateZ(-45deg);
    background-color: var(--menuTextColor);
}

.ham.active.svelte-oas7sq .ham-button.svelte-oas7sq:after {
    content: "close";
    color: var(--menuTextColor, #000);
}

.ham.active.svelte-oas7sq .ham-button.svelte-oas7sq:before {
    content: "";
    width: auto;
    background: linear-gradient(var(--menuBackgroundColor) 70%,
        var(--menuBackgroundColorTransparent));
    position: fixed;
    top: 0;
    left: 0;
    right: 20px;
    height: 100px;
    opacity: 1;
    transition-delay: 0.5s;
}

.menu-screen.svelte-oas7sq.svelte-oas7sq {
    position: fixed;
    background: var(--menuBackgroundColor, none);
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    transition: all 0.35s;
    overflow-x: hidden;
    z-index: 20;
    color: var(--autoColor, var(--navTextColor, #000));
}

.menu-screen.menu-open.svelte-oas7sq.svelte-oas7sq {
    min-height: 100%;
    opacity: 1;
}

.menu-screen.svelte-oas7sq .menu-inner.svelte-oas7sq {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-height: 100vh;
}

.menu-screen.svelte-oas7sq a.menu-link.svelte-oas7sq {
    display: block;
    text-align: right;
    margin: 30px 0;
}

.menu-screen.svelte-oas7sq a.subscribe.svelte-oas7sq {
    margin-top: 80px;
}

.menu-screen.svelte-oas7sq a.disabled.svelte-oas7sq {
    cursor: not-allowed;
}

.menu-screen.svelte-oas7sq a.disabled .menu-link-text.svelte-oas7sq {
    color: #888;
}

.menu-screen.svelte-oas7sq a:not(.disabled):hover .menu-link-text.svelte-oas7sq {
    color: var(--menuHoverColor, #d60c18);
}

.menu-screen.svelte-oas7sq .menu-link-text.svelte-oas7sq {
    transition: all 0.3s;
    color: var(--menuTextColor, #000);
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 400;
}

.menu-screen.svelte-oas7sq .menu-link-subtext.svelte-oas7sq {
    color: var(--menuSubtextColor, #000);
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
    .nav-background.svelte-oas7sq.svelte-oas7sq {
    height: var(--navBackgroundHeight);
    }

    .icon-cw.svelte-oas7sq.svelte-oas7sq {
    font-size: 30px;
    }

    .left-block.svelte-oas7sq.svelte-oas7sq {
    margin: 26px 0 0 35px;
    left: 0;
    }

    .left-block.svelte-oas7sq .nav-subscribe.svelte-oas7sq {
    display: none;
    }

    .right-block.svelte-oas7sq.svelte-oas7sq {
    margin: 12px 0 0 0;
    right: 55px;
    }

    .ham.svelte-oas7sq.svelte-oas7sq {
    margin: 12px 10px 0 0;
    }

    .ham.svelte-oas7sq .ham-button.svelte-oas7sq {
    width: 30px;
    height: 36px;
    }

    .ham.svelte-oas7sq .ham-button.svelte-oas7sq:after {
    letter-spacing: 0.08em;
    }

    .ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(1),
    .ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(2),
    .ham.svelte-oas7sq:not(.active):hover .ham-button b.svelte-oas7sq:nth-child(3) {
    left: 0;
    }

    .ham.active.svelte-oas7sq .ham-button.svelte-oas7sq:before {
    height: 80px;
    right: 0;
    }

    .menu-screen.svelte-oas7sq .menu-inner.svelte-oas7sq {
    padding: 60px 15px;
    }

    .menu-screen.svelte-oas7sq .menu-link-text.svelte-oas7sq {
    font-size: 1.125em;
    }

    .menu-screen.svelte-oas7sq .menu-link-subtext.svelte-oas7sq {
    font-size: 0.875em;
    }

    .menu-screen.svelte-oas7sq a.menu-link.svelte-oas7sq {
    margin: 15px 0;
    }

    .menu-screen.svelte-oas7sq a.subscribe.svelte-oas7sq {
    margin-top: 40px;
    }
}

button.svelte-5mc9lh {
    border: solid 2px var(--color);
    background-color: #fff;
    color: var(--color);
    min-width: 140px;
    transition: all 0.2s;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
}

button.svelte-5mc9lh:hover {
    background-color: var(--color);
    color: #fff;
}

button.svelte-5mc9lh:disabled {
    color: #abb3b7;
    border-color: #abb3b7;
    background-color: #fff;
}

button.svelte-5mc9lh:focus {
    outline: 0;
}

.wrapper.svelte-d0hw9j.svelte-d0hw9j {
    grid-column: 1/13;
    padding-top: 30px;
    padding-bottom: 30px;
}

.img.svelte-d0hw9j.svelte-d0hw9j {
    display: inline-block;
}

.img.svelte-d0hw9j+.img.svelte-d0hw9j {
    margin-left: 45px;
}

.img.svelte-d0hw9j a.svelte-d0hw9j {
    color: var(--color);
    transition: color 0.3s;
    text-decoration: none;
    border-bottom: none;
}

.img.svelte-d0hw9j a i.svelte-d0hw9j {
    font-size: 33px;
}

.img.svelte-d0hw9j a.svelte-d0hw9j:hover {
    color: var(--hover-color);
}

.header.svelte-1r3j6w0.svelte-1r3j6w0 {
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    background-image: url(../cover.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.wrapper.svelte-1r3j6w0.svelte-1r3j6w0 {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 8px;
}

h1.svelte-1r3j6w0.svelte-1r3j6w0 {
    grid-column: 1/13;
    font-size: 70px;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

p.svelte-1r3j6w0.svelte-1r3j6w0 {
    grid-column: 1/13;
    max-width: 640px;
    text-align: center;
    margin: 28px auto;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
}

.people.svelte-1r3j6w0.svelte-1r3j6w0 {
    display: none;
}

.suggestions.svelte-1r3j6w0.svelte-1r3j6w0 {
    margin-top: 20px;
    color: #62757f;
    text-align: center;
}

.suggestions.svelte-1r3j6w0 a.svelte-1r3j6w0 {
    color: #62757f;
    margin: 0 5px;
    transition: all 0.2s;
}

.suggestions.svelte-1r3j6w0 a.svelte-1r3j6w0:hover {
    opacity: 0.7;
}

@-webkit-keyframes svelte-1r3j6w0-scroll-bounce {
    0% {
    bottom: 35px;
    }

    50% {
    bottom: 30px;
    }

    100% {
    bottom: 35px;
    }
}

@keyframes svelte-1r3j6w0-scroll-bounce {
    0% {
    bottom: 35px;
    }

    50% {
    bottom: 30px;
    }

    100% {
    bottom: 35px;
    }
}

.scroll-down.svelte-1r3j6w0.svelte-1r3j6w0 {
    position: absolute;
    width: 26px;
    bottom: 35px;
    -webkit-animation-name: svelte-1r3j6w0-scroll-bounce;
    animation-name: svelte-1r3j6w0-scroll-bounce;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .header.svelte-1r3j6w0.svelte-1r3j6w0 {
    background-image: url(../cover-tablet.jpg);
    padding: 0;
    }

    .wrapper.svelte-1r3j6w0.svelte-1r3j6w0 {
    padding: 20px;
    }

    h1.svelte-1r3j6w0.svelte-1r3j6w0 {
    font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    .header.svelte-1r3j6w0.svelte-1r3j6w0 {
    background-image: url(../cover-mobile01.jpg);
    }

    .logo.svelte-5eyzd4 {
        width: 80px;
    }

    h1.svelte-1r3j6w0.svelte-1r3j6w0 {
    font-size: 37px;
    }

    p.svelte-1r3j6w0.svelte-1r3j6w0 {
    font-size: 16px;
    }

    .suggestions.svelte-1r3j6w0.svelte-1r3j6w0 {
    font-size: 14px;
    }

    .left-block.svelte-oas7sq.svelte-oas7sq {
        margin: 26px 0 0px 10px
    }    

    .scroll-down.svelte-1r3j6w0.svelte-1r3j6w0 {
    width: 20px;
    }
}

@media screen and (max-width: 375px) {
    .header.svelte-1r3j6w0.svelte-1r3j6w0 {
    background-image: url(../cover-xs01.jpg);
    padding: 0;
    }
}

.wrapper.svelte-wuvo61.svelte-wuvo61 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon.svelte-wuvo61.svelte-wuvo61 {
    width: 30px;
    fill: var(--color);
    cursor: pointer;
    transition: all 0.4s;
}

form.svelte-wuvo61.svelte-wuvo61 {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #000;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

form.svelte-wuvo61 .input-container.svelte-wuvo61 {
    position: relative;
}

form.nav.svelte-wuvo61.svelte-wuvo61 {
    margin-left: 0;
    width: 1px;
    transition: all 0.4s;
    opacity: 0;
}

form.nav.isOpen.svelte-wuvo61.svelte-wuvo61 {
    margin-left: 15px;
    width: 216px;
    opacity: 1;
}

form.nav.svelte-wuvo61 input.svelte-wuvo61 {
    width: 160px;
}

input.svelte-wuvo61.svelte-wuvo61 {
    padding: 8px;
    border: none;
    outline: 0;
    height: 38px;
    width: 320px;
}

button.svelte-wuvo61.svelte-wuvo61 {
    padding: 8px 14px;
    background-color: #62757f;
    color: #fff;
    border: none;
    height: 38px;
    white-space: nowrap;
    transition: all 0.2s;
}

button.svelte-wuvo61.svelte-wuvo61:hover {
    opacity: 0.7;
}

.suggestions-box.svelte-wuvo61.svelte-wuvo61 {
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.suggestion-entry.svelte-wuvo61.svelte-wuvo61 {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.suggestion-entry.svelte-wuvo61.svelte-wuvo61:hover {
    background-color: #eee;
}

.suggestion-entry.svelte-wuvo61.svelte-wuvo61:last-of-type {
    border-bottom: none;
}

@media screen and (max-width: 320px) {
    .logo.svelte-5eyzd4 {
        width: 75px;
    }
}

@media screen and (max-width: 768px) {
    .search-icon.svelte-wuvo61.svelte-wuvo61 {
    width: 28px;
    }

    input.svelte-wuvo61.svelte-wuvo61 {
    width: 260px;
    }

    form.nav.svelte-wuvo61.svelte-wuvo61 {
    position: absolute;
    right: -45px;
    top: 0;
    width: calc(100vw - 20px) !important;
    pointer-events: none;
    }

    form.nav.svelte-wuvo61 .input-container.svelte-wuvo61 {
    width: 100%;
    }

    form.nav.isOpen.svelte-wuvo61.svelte-wuvo61 {
    top: calc(100% + 20px);
    pointer-events: all;
    margin-left: 0;
    }

    form.nav.svelte-wuvo61 input.svelte-wuvo61 {
    width: 100%;
    }
}

@media screen and (max-width: 576px) {
    input.svelte-wuvo61.svelte-wuvo61 {
    width: 240px;
    }
}

@-webkit-keyframes svelte-sg04x0-ball-triangle-path-1 {
    33% {
    transform: translate(25px, -50px);
    }

    66% {
    transform: translate(50px, 0);
    }

    100% {
    transform: translate(0, 0);
    }
}

@keyframes svelte-sg04x0-ball-triangle-path-1 {
    33% {
    transform: translate(25px, -50px);
    }

    66% {
    transform: translate(50px, 0);
    }

    100% {
    transform: translate(0, 0);
    }
}

@-webkit-keyframes svelte-sg04x0-ball-triangle-path-2 {
    33% {
    transform: translate(25px, 50px);
    }

    66% {
    transform: translate(-25px, 50px);
    }

    100% {
    transform: translate(0, 0);
    }
}

@keyframes svelte-sg04x0-ball-triangle-path-2 {
    33% {
    transform: translate(25px, 50px);
    }

    66% {
    transform: translate(-25px, 50px);
    }

    100% {
    transform: translate(0, 0);
    }
}

@-webkit-keyframes svelte-sg04x0-ball-triangle-path-3 {
    33% {
    transform: translate(-50px, 0);
    }

    66% {
    transform: translate(-25px, -50px);
    }

    100% {
    transform: translate(0, 0);
    }
}

@keyframes svelte-sg04x0-ball-triangle-path-3 {
    33% {
    transform: translate(-50px, 0);
    }

    66% {
    transform: translate(-25px, -50px);
    }

    100% {
    transform: translate(0, 0);
    }
}

.ball-triangle-path.svelte-sg04x0.svelte-sg04x0 {
    position: relative;
    transform: translate(-29.994px, -37.50938px);
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-child(1) {
    -webkit-animation-name: svelte-sg04x0-ball-triangle-path-1;
    animation-name: svelte-sg04x0-ball-triangle-path-1;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-child(2) {
    -webkit-animation-name: svelte-sg04x0-ball-triangle-path-2;
    animation-name: svelte-sg04x0-ball-triangle-path-2;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-child(3) {
    -webkit-animation-name: svelte-sg04x0-ball-triangle-path-3;
    animation-name: svelte-sg04x0-ball-triangle-path-3;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0 {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #fff;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-of-type(1) {
    top: 50px;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-of-type(2) {
    left: 25px;
}

.ball-triangle-path.svelte-sg04x0>div.svelte-sg04x0:nth-of-type(3) {
    top: 50px;
    left: 50px;
}