html,
body {
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    background-color: #EFF6F9;
    color: #5c5562;
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 28px;
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow: hidden;
}

:root {
    --TextGray: #5c5562;
    --CreamyWhite: #f9f2ea;
    --Light: #EFF6F9;
    --Dark: #000000;
    --DarkBlue: #202c44;
    --Blue: #374766;
    --TextBlue: #141b32;
    --LightBlue: #91A6C5;
    --BtnOrange: #f2a045;
    --DarkOrange: #e25700;
    --Orange: #df5e00;
    --LightOrange: #f2a045;
    --Green: #2c4452;
    --DarkGreen: #1f2f38;
}

a {
    color: #5f91c2;
    word-wrap: break-word;
}

a:focus,
a:hover {
    text-decoration: none;
    color: #4d759e;
}

.btn {
    box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
    padding: 1.25rem 2rem;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: .15rem;
    border: 0;
}

.video-info {
    font-size: 12px;
    margin-top: 5px;
}


/* ======= Color ======= */

.color-light {
    color: var(--Light) !important;
}

.bg-black {
    background-color: #161616 !important;
}

.bg-light {
    background-color: #EFF6F9 !important;
}

.bg-dark {
    background: url(../img/bg/dark.png);
    background-size: cover;
}

.w-max-600 {
    max-width: 600px;
}

.w-max-400 {
    max-width: 400px;
}


/* ======= Width ======= */

.lh-md-20 {
    line-height: 20px;
}

.notice {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-control-prev,
.carousel-control-next {
    color: #fff !important;
    opacity: 1 !important;
}

.carousel-control-prev {
    margin-left: -50px !important;
    color: black;
    font-size: 3rem;
    max-width: 2%;
}

.carousel-control-prev .fa,
.carousel-control-prev svg,
.carousel-control-prev .carousel-control-prev-icon {
    display: none;
}

.carousel-control-prev:after {
    content: '<';
    font-size: 40px;
    color: var(--DarkBlue);
}

.carousel-control-next {
    margin-right: -50px !important;
    color: black;
    font-size: 3rem;
    max-width: 2%;
}

.carousel-control-next .fa,
.carousel-control-next svg,
.carousel-control-next .carousel-control-next-icon {
    display: none;
}

.carousel-control-next:after {
    content: '>';
    font-size: 40px;
    color: var(--DarkBlue);
}


/* ======== section ========== */

.section-caption {
    padding: 1rem 0 3rem 0;
}

.section-slogan {
    display: flex;
    align-items: center;
}

.section-slogan .en-mark {
    font-size: 14px;
    white-space: nowrap;
}

.section-slogan hr {
    font-size: 14px;
}

.section-slogan .line-after {
    width: 100%;
    flex-grow: 1;
    border-bottom: 1px solid;
    margin-left: 25px;
}

.section-title {
    padding: 20px 0 35px 0;
    border-bottom: 1px solid;
    font-size: 33px;
    margin-top: 5px;
    font-weight: 700;
}

.section--two-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.section-subtitle {
    font-size: clamp(16px, 1.35vw, 22px);
    /* font-size: 22px; */
    font-weight: 700;
}

.section-content {
    font-size: clamp(16px, 1.2vw, 20px);
    /* line-height: 1.5rem; */
    /* font-size: 20px; */
}

.section-btn {
    position: relative;
    font-size: 18px;
    color: var(--TextGray);
    border: none;
    box-shadow: none;
    margin-right: 50px;
}

.section-btn span {
    position: absolute;
    right: -20px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: animation-section-btn;
}

@keyframes animation-section-btn {
    0% {
        right: -20px;
    }
    50% {
        right: -40px;
    }
    100% {
        right: -20px;
    }
}

.award-txt {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    /* font-size: 1.25rem; */
    font-weight: 700;
}

.section-punchline {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    /* font-size: 1.25rem; */
    font-weight: 700;
}

.section-block {
    padding: 5rem 5rem;
}


/* fixed  */

.fixed-reserve {
    display: none;
    position: fixed;
    bottom: 130px;
    right: 10px;
    z-index: 1046;
    background-color: var(--Light);
    border-radius: 100px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 18px;
}

.fixed-reserve.dark {
    background-color: #103539;
}

.fixed-reserve.dark a {
    color: var(--Light);
}

.fixed-reserve.show {
    display: block;
}

.fixed-reserve a {
    color: #1e1a19;
}

.fixed-joinHiyes {
    display: none;
    position: fixed;
    bottom: 210px;
    right: 10px;
    z-index: 1046;
    background-color: #5f91c2;
    border-radius: 100px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 18px;
}

.fixed-joinHiyes a {
    color: var(--Light);
}

.fixed-joinHiyes.show {
    display: block;
}


/* ======= followus ======= */

.contact-section {
    padding: 2rem 0 2rem 0;
}

.contact-section hr {
    border-color: #3b6392;
    border-width: 0.25rem;
    width: 3rem;
}

.contact-section .card {
    border: 0;
    border-bottom: 0.25rem solid #3b6392;
    border-radius: 20px;
}

.contact-section .card h4 {
    font-size: 1rem;
    /* font-family: 'Varela Round'; */
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.contact-section .card hr {
    border-color: #3b6392;
    border-width: 0.25rem;
    width: 3rem;
}

.contact-section .social {
    margin-top: 5rem;
}

.contact-section .social a {
    text-align: center;
    height: 3rem;
    width: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    line-height: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.contact-section .social a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.contact-section .social a:active {
    color: #fff;
}

footer {
    padding: 5rem 0;
}


/* ======= YT video ======= */

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ======= Section reserve ======= */

.section-reservation {
    text-align: justify;
}

.section-reservation .nav-tabs-customized {
    justify-content: space-around;
    font-size: 18px;
    height: 50px;
    border-bottom: 0;
    color: var(--TextGray);
}

.section-reservation .nav-tabs-customized li {
    position: relative;
    margin: 3px 15px;
}

.section-reservation .nav-tabs-customized li a {
    color: var(--TextGray);
    font-weight: 500;
}

.section-reservation.bgdark .nav-tabs-customized li a {
    color: var(--Light);
}

.section-reservation .nav-tabs-customized li a:hover,
.section-reservation .nav-tabs-customized li a:focus,
.section-reservation .nav-tabs-customized li a.active {
    color: var(--Dark);
}

.section-reservation.bgdark .nav-tabs-customized li a:hover,
.section-reservation.bgdark .nav-tabs-customized li a:focus,
.section-reservation.bgdark .nav-tabs-customized li a.active {
    color: var(--Light);
}

.section-reservation .nav-tabs-customized li a.active:after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--Dark);
}

.section-reservation.bgdark .nav-tabs-customized li a.active:after {
    background-color: var(--Light);
}

.section-reservation .card-case-wrapper {
    color: var(--TextGray);
    border-radius: 10px;
    padding: 15px;
    margin: 0 -10px 10px -10px;
}

.section-reservation.bgdark .card-case-wrapper {
    color: var(--Light);
}

.section-reservation .card-case-inner {
    display: flex;
}

.section-reservation .card-case--img {
    text-align: right;
    flex: 0 0 35%;
    margin-left: 30px;
}

.section-reservation .card-case--text {
    flex: 0 0 57%;
    padding: 10px 0 0 20px;
    font-size: 14px;
}

.section-reservation .card-case--text h4 {
    font-size: 18px;
    text-align: left;
}

.section-reservation .card-case--link {
    margin-top: 20px;
}

.section-reservation .card-case--link a {
    color: var(--TextGray);
    text-decoration: var(--TextGray) underline;
}

.section-reservation.bgdark .card-case--link a {
    color: #fff;
    text-decoration: #fff underline;
}

.section-reservation .btn-detail {
    float: right;
    margin-top: -35px;
}

.section-reservation .btn-reservation {
    text-align: center;
    margin-top: 10px;
}

.section-reservation .btn-reservation a {
    color: var(--TextGray);
    border: 1px solid var(--TextGray);
}

.section-reservation.bgdark .btn-reservation a {
    color: var(--Light);
    border: 1px solid var(--Light);
}

.section-reservation .btn-detail {
    float: right;
    margin-top: -35px;
}

.btn-sendSmsCode-wrapper {
    padding-top: 70px;
}

.btn-sendSmsCode,
.btn-sendForm {
    font-size: 1.1rem;
    padding: .55rem .5rem;
    background-color: var(--Dark);
    color: var(--Light) !important;
}

.btn-sendSmsCode:hover,
.btn-sendSmsCode:focus,
.btn-sendSmsCode:active,
.btn-sendForm:hover,
.btn-sendForm:focus,
.btn-sendForm:active {
    background-color: var(--Dark);
}


/* ======= Section info ======= */

.qalist-block {
    padding: 0 2.5rem;
}

.info-wrap {
    margin-top: 15px;
}

.info-wrap .subtitle .chevron {
    position: relative;
}

.info-wrap .subtitle .chevron::after {
    content: "";
    height: 25px;
    width: 25px;
    background: url(../img/chevron-close.png) no-repeat;
    background-size: 14px;
    font-weight: 100;
    font-size: 20px;
    margin-top: 6px;
    margin-left: 8px;
    color: var(--TextGray);
    position: absolute;
}

.info-wrap .subtitle.collapsed .chevron:after {
    content: "";
    height: 25px;
    width: 25px;
    background: url(../img/chevron-open.png) no-repeat;
    background-size: 14px;
    font-weight: 100;
    font-size: 20px;
    margin-top: 11px;
    margin-left: 8px;
    color: var(--TextGray);
    position: absolute;
}

.info-wrap .subtitle {
    color: var(--Light);
    cursor: pointer;
    font-size: 24px;
    margin-bottom: 1.25rem;
}

.info-wrap .card-body {
    color: var(--Light);
    border-left: 1px solid;
    padding: 0 1.25rem;
    text-align: justify;
}

.bg-bottom-dark {
    background: -webkit-linear-gradient(to bottom right, #131b34 50%, #183372);
    background: -o-linear-gradient(to bottom right, #131b34 50%, #183372);
    background: -moz-linear-gradient(to bottom right, #131b34 50%, #183372);
    background: linear-gradient(to bottom right, #131b34 50%, #183372);
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

@media screen and (min-width: 1500px) {
    .section-reservation .card-case--img {
        flex: 0 0 30%;
        margin-left: 70px;
    }
}


/* ======= mobile ======= */

@media screen and (max-width: 992px) {
    .contact-section {
        padding: 3rem 0 1rem;
    }
}

@media screen and (max-width: 991px) {
    .section-reservation .nav-tabs-customized li a.active:after {
        bottom: -7px;
    }
    .section-block {
        padding: 5rem 0;
    }
}

@media screen and (max-width:768px) {
    .carousel-control-prev {
        margin-left: 0 !important;
        max-width: unset;
    }
    .carousel-control-next {
        margin-right: 0 !important;
        max-width: unset;
    }
}

@media screen and (max-width:767px) {
    body {
        font-size: 1rem;
    }
    .section-block {
        padding: 1rem 1.6rem;
    }
    .section-title {
        font-size: 21px;
        padding: 5px 0 20px 0;
    }
    .section--two-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-subtitle {
        font-size: 16px;
    }
    .section-content {
        font-size: 16px;
    }
    .section-btn {
        font-size: 16px;
        margin-right: 0;
    }
    .section-caption {
        padding: 2rem 0 2rem 0;
    }
    .section-slogan .en-mark {
        font-size: 12px;
    }
    .award-txt {
        font-size: 1rem;
    }
    .section-punchline {
        font-size: 1.1rem;
    }
    .fixed-reserve {
        bottom: 140px;
    }
    .qalist-block {
        padding: 0 .5rem;
    }
    .info-wrap .subtitle {
        font-size: 20px;
    }
    .section-reservation .nav-tabs-customized {
        justify-content: center;
        font-size: 1rem;
        height: 105px;
        margin-bottom: 30px;
    }
    .section-reservation .nav-tabs-customized li {
        margin: 5px 10px;
    }
    .section-reservation .nav-tabs-customized li a.active:after {
        bottom: 1px;
    }
    .section-reservation .card-case-wrapper {
        padding: 0;
    }
    .section-reservation .card-case--img {
        flex: 0 0 40%;
        padding-left: 50px;
        margin-left: 5px;
    }
    .section-reservation .card-case--text {
        flex: 0 0 58%;
        font-size: 14px;
        padding: 7px 0 0 30px;
    }
    .section-reservation .card-case--text h4 {
        font-size: 16px;
    }
    .section-reservation .card-case--link {
        margin-top: 15px;
    }
    .section-reservation .hr--vertical-line {
        display: none;
    }
    .bg-bottom-dark {
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 100%);
    }
    .btn-sendSmsCode-wrapper {
        padding-top: 0;
    }
}


/* navbar */

#mainNav .navbar-toggler {
    font-size: 90%;
    padding: 0.75rem;
    color: var(--Light);
    border: none;
}

#mainNav .navbar-toggler:focus {
    outline: none;
}

#mainNav .navbar-brand {
    width: 15vw;
}

#mainNav .navbar-nav {
    align-items: center;
    justify-content: center;
}

#mainNav .navbar-nav .nav-item {
    padding: 0 7px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    text-align: center;
    font-size: 16px;
}

#mainNav .navbar-nav .nav-item:hover {
    color: fade(white, 80%);
    outline: none;
    background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active,
#mainNav .navbar-nav .nav-item:focus {
    outline: none;
    background-color: transparent;
}

#mainNav .navbar-nav .nav-item.icon {
    font-size: 16px;
    /* padding: 0; */
}

#mainNav .navbar-nav .nav-link {
    color: var(--Light);
}

#mainNav .navbar-nav .nav-item.active .nav-link {
    transition: none;
    border: 1px solid var(--Light) !important;
    border-radius: 100px;
    padding: 5px 15px;
}

#mainNav .navbar-nav .nav-item.icon .nav-link:hover {
    border: 1px solid transparent !important;
}

#mainNav.navbar-shrink {
    background-color: rgba(0, 0, 0, 1);
}

#mainNav.navbar-shrink .nav-item.active .nav-link {
    border: 1px solid var(--Light) !important;
}

@media (min-width: 1200px) {
    #mainNav {
        padding-right: 7rem;
        padding-left: 6rem;
        padding-top: .8rem;
        padding-bottom: 0;
        border-bottom: none;
        background-color: transparent;
        transition: background-color 0.3s ease-in-out;
    }
    #mainNav .navbar-brand {
        padding: .5rem 0;
        color: rgba(255, 255, 255, 0.5);
    }
    #mainNav .navbar-nav .nav-link {
        transition: none;
        color: var(--Light);
        border-radius: 100px;
        border: 1px solid transparent;
        padding: 5px 10px;
    }
    #mainNav.navbar-shrink {
        background-color: rgba(0, 0, 0, .8);
    }
    #mainNav.navbar-shrink .navbar-brand {
        color: #161616;
    }
    #mainNav.navbar-shrink .nav-link {
        color: var(--Light);
    }
    #mainNav.navbar-shrink .nav-link:hover {
        border: 1px solid var(--Light);
    }
    #mainNav.navbar-shrink .nav-link:active {
        color: var(--Light);
        outline: none;
    }
}

@media (max-width: 1200px) {
    #mainNav .navbar-nav .nav-link {
        padding: 5px 5px;
    }
}

@media (max-width: 991px) {
    #mainNav .navbar-nav .nav-link {
        padding: 5px 0;
    }
    #mainNav .navbar-nav .nav-item {
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    #mainNav {
        z-index: 1050;
        padding: 0 1rem;
    }
    #mainNav.active {
        background-color: rgba(0, 0, 0, 1);
    }
    #mainNav .navbar-brand {
        width: 45%;
    }
    #mainNav .navbar-nav .nav-item {
        padding: 15px 5px;
    }
    #mainNav .navbar-nav .nav-item.icon {
        padding: 0 20px;
    }
    #mainNav .navbar-nav .nav-item.icon .nav-link svg {
        font-size: 30px;
    }
    #mainNav.navbar-shrink .m-menu-icon a {
        color: var(--Light);
    }
    #mainNav.navbar-shrink .navbar-toggler {
        color: var(--Light);
    }
}

.hexagonstar-block--right {
    position: absolute;
    animation: move 15s linear infinite;
    right: -250px;
    top: -250px;
}

.hexagonstar-block--left {
    z-index: 1;
    position: absolute;
    animation: move 15s linear infinite;
    left: -250px;
    bottom: -250px;
}

@keyframes move {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width:767px) {
    .hexagonstar-block--right {
        width: 80%;
        right: -160px;
        top: -160px;
    }
    .hexagonstar-block--left {
        width: 80%;
        left: -120px;
        bottom: -180px;
    }
}