:root {
    --background-color: #e7d6c3;
    --text-color: black;
    --bar-color: #bab4a1;
    --line-color: #676059;
    --button-color: #676059;
    --float-button-color: #676059;
    --splash-bg-color: #3f3f3f;
    --footer-bg-color: #3f3f3f;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: ‘Noto Sans TC’, sans-serif;
}

div {
    font-family: ‘Noto Sans TC’, sans-serif;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

.sidebar {
    display: none;
    top: 0;
    left: -300px;
    position: fixed;
    height: 100%;
    width: 300px;
    background: white;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    color: black;
    background: #DF9AAE;
    transition-property: right, left;
    transition-duration: 0.5s;
    -webkit-transition-property: right, left;
    /* Safari */
    -webkit-transition-duration: 0.5s;
    /* Safari */
}

@media only screen and (max-width: 1000px) {
    .sidebar {
        display: inline-block;
    }
}

.sidebar-control {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    margin-left: calc(100% + 10px);
    cursor: pointer;
}

.sidebar-buttonlist {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.sidebar-button {
    display: inline-flex;
    justify-content: left;
    align-items: center;
    height: 30px;
    width: 100%;
    color: white;
    padding: 20px;
    cursor: pointer;
}

.sidebar-button:hover {
    color: whitesmoke;
}

.sidebar-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.set_margin {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;
    width: 100%;
}

.background {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -100;
    transition: all .5s;
    background-color: #F8B1B1;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    padding: 10px;
    background: #E7B4BF;
    background: linear-gradient(180deg, rgba(231, 180, 191, 1) 0%, rgba(231, 180, 191, 0.53) 50%, rgba(231, 180, 191, 0) 100%);
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .header {
        height: 50vh;
    }
}

.nav-bar {
    display: block;
    animation: 0.5s ease-out 0s 1 slideInFromLeft;
    width: auto;
}

@media only screen and (max-width: 1000px) {
    .nav-bar {
        display: none;
    }
}

.nav-bar-link {
    display: inline-block;
    margin: 0px 20px;
    font-size: 1.2rem;
    color: white;
}

.nav-bar-link:hover {
    cursor: pointer;
    font-weight: bold;
}

.lang-button-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 60px;
}

@media only screen and (max-width: 1000px) {
    .lang-button-group {
        display: none;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0px 260px;
}

@media only screen and (max-width: 1300px) {
    .wrapper {
        margin: 0px 0px 80px 0px;
    }
}

.front {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.front-logo {
    display: block;
    position: absolute;
    width: 40%;
    height: 100%;
    z-index: 3;
}

.front-image {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.whatsapp-button {
    display: inline-flex;
    flex-direction: row;
    border-radius: 10px;
    padding: 8px 15px;
    margin: 10px;
    font-size: 1rem;
    background-color: #E6636E;
    color: white;
}

.whatsapp-button img {
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.info {
    display: block;
    width: 100%;
}

.info-left {
    display: block;
    width: 70%;
    float: left;
}

@media only screen and (max-width: 1000px) {
    .info-left {
        width: 100%;
    }
}

.minfo {
    display: block;
    padding: 20px;
}

.minfo-header {
    display: block;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.2rem;
}

.minfo-subheader {
    display: block;
    font-size: 0.85rem;

}

.minfo-text {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.3rem;
}

.pinfo {
    display: block;
    padding: 20px;
}

.pinfo-header {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
}

.pinfo-title {
    display: inline-block;
    font-size: 0.9rem;
}

.pinfo-content {
    display: inline-block;
    font-size: 0.9rem;
}

.info-right {
    display: block;
    width: 30%;
    float: right;
    padding-top: 30px;
}

@media only screen and (max-width: 1000px) {
    .info-right {
        width: 100%;
    }
}

.info-right img {
    display: block;
    border-radius: 30px;
}

.info-image {
    display: block;
    width: 100%;
    margin-top: 20px;
}

.gallery {
    display: block;
    width: 100%;
}

.gallery img {
    display: block;
    border-radius: 30px;
    margin-top: 20px;
}

.news-contact {
    display: block;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.news-contact-left {
    display: block;
    width: 50%;
    float: left;
}

@media only screen and (max-width: 1000px) {
    .news-contact-left {
        width: 100%;
    }
}

.contact {
    display: block;
    padding: 20px;
}

.contact-header {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-subheader {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
}

.documentation {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.8rem;
    padding: 10px;
    background: #eb9abc;
    opacity: 0.9;
    height: auto;
}

.documentation-text{
    display: inline-block;
}

/* @media only screen and (max-width: 1000px) {
    .documentation {
        height: 150px;
    }
} */

.address {
    display: block;
    width: 100%;
    font-size: 0.9rem;
}

.disclaimer {
    display: block;
    width: 100%;
    font-size: 0.75rem;
}

.footer {
    display: block;
    position: fixed;
    font-size: 0.85rem;
    margin: 20px 0px;
}

.bottomButton {
    display: none;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0px;
    right: 0px;
    z-index: 10;
    background-color: #E6636E;
    font-weight: bold;
    color: white;
}

/* @media only screen and (max-width: 1000px) {
    .bottomButton {
        display: flex;
        justify-content: center;
        align-items: center;
    }
} */

.bottomButton img {
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}






















.edgeButton {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: auto;
    height: auto;
    bottom: 150px;
    right: 0px;
    z-index: 10;
    background: #E6636E;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 1rem;
    padding: 10px 10px 10px 15px;
    cursor: pointer;
    color: white;
}

.edgeButton img {
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media only screen and (max-width: 1000px) {
    .edgeButton {
        display: none;
    }
}