@font-face {
  font-family: "NotoSansTC-Thin";
  src: url("/Public/fonts/NotoSansTC-Thin.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-ExtraLight";
  src: url("/Public/fonts/NotoSansTC-ExtraLight.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-Light";
  src: url("/Public/fonts/NotoSansTC-Light.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-Regular";
  src: url("/Public/fonts/NotoSansTC-Regular.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-Medium";
  src: url("/Public/fonts/NotoSansTC-Medium.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-SemiBold";
  src: url("/Public/fonts/NotoSansTC-SemiBold.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-Bold";
  src: url("/Public/fonts/NotoSansTC-Bold.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-ExtraBold";
  src: url("/Public/fonts/NotoSansTC-ExtraBold.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NotoSansTC-Black";
  src: url("/Public/fonts/NotoSansTC-Black.woff2") format("woff2"), url("/Public/fonts/NotoSansTC-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  color: #505050;
  background: #f1f1f1;
  position: relative;
  font-size: 1rem;
  line-height: 1.8rem;
  font-family: "NotoSansTC-Regular", "Helvetica Neue", Helvetica, Arial, "新微軟正黑體", "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", sans-serif;
  font-weight: 400;
}
.navbar-toggle .icon-bar {
  background-color: #ffffff;
}

.mycol {
  padding: 0;
  margin: 0;
}

.mycol1 {
  padding: 0 10px 0 15px;
}

.mycol2 {
  padding: 0 15px 0 0;
}

.main-header {
  background: #ffffff;
}

.myhead {
  padding: 0;
  height: 100px;
}

.branding {
  height: 100px;
}

.toptext {
  line-height: 100px;
  padding: 0;
}

.topright {
  text-align: center;
  padding: 0 0 0 20px;
}

.topbtns {
  padding: 15px 0 5px 0;
}

.topbtns a {
  display: block;
  border: solid thin #888;
  border-radius: 0.3rem;
  color: #888;
  padding: 0 0.1rem;
  text-decoration: none;
}

.topbtns a:hover {
  border: solid thin #a62584;
  border-radius: 0.3rem;
  color: #fff;
  background: #a62584;
  text-decoration: none;
}

.topbtndiv {
  padding: 0 3px 3px 0;
}

.main {
  background: #ffffff;
  padding: 10px;
  margin: 10px auto;
}

.justify {
  text-align: justify;
}

.pink {
  color: #e4007f;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}
/* main-navigation */
.main-navigation {
  text-align: center;
}

.mymenu {
  background: #a62584;
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
  color: #ffffff;
}

.main-navigation .menu {
  padding: 0;
  margin: 0;
}

.main-navigation .menu li {
  list-style: none;
  display: inline-block;
  position: relative;
}

.main-navigation .menu li.nav-current {
  border-bottom: 2px solid #e67e22;
  margin-bottom: -2px;
}

.main-navigation .menu li a {
  color: #ffffff;
  line-height: 2.4rem;
  display: block;
  padding: 0 12px;
  font-size: 1.1rem;
}

.main-navigation .menu li:hover > a {
  color: #fff100;
  text-decoration: none;
}

.main-navigation .menu li ul {
  visibility: hidden;
  background: #ffffff;
  text-align: left;
  padding: 2px 0px;
  margin: 0;
  position: absolute;
  left: 0;
  top: 120%;
  /*width: 200px;*/
  z-index: 999;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-navigation .menu li ul li {
  display: block;
  margin: 0;
}

.main-navigation .menu li ul li a {
  line-height: 1.8rem;
  color: #505050;
}

.main-navigation .menu li ul:hover > a {
  color: #e67e22;
}

.main-navigation .menu li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  top: 100%;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background: #a62584;
}

.brXsm {
  display: none;
}

.dropdown-menu li:hover > a {
  color: #ffffff !important;
}

.logo-img {
  height: 110px;
}

.topline {
  padding: 5px 0 0 0;
}

.hotline-text {
  font-size: 1.2rem;
}

.shotline {
  font-size: 2rem;
  color: #a62584;
  padding: 0 0 0 6px;
  font-style: italic;
  font-family: "NotoSansTC-SemiBold";
  font-weight: 600;
}

a.shotline:hover {
  text-decoration: none;
  color: #a62584;
}

a.loca-text:hover {
  text-decoration: none;
  color: #505050;
}

@media (max-width: 1199px) {
  #main-menu {
    padding: 0;
  }
  .main-navigation .menu li a {
    text-align: center;
    padding: 0 4px;
  }
  .topline {
    padding: 0.3rem 0 0 0;
  }
}

@media (max-width: 991px) {
  .copyright {
    background: #0168b7;
    text-align: center;
    color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 300;
    font-size: 0.9rem;
  }
  .main-navigation .menu li a {
    text-align: center;
    padding: 0 28px;
  }
  .logo-img {
    height: 100px;
  }
  .hotline-text {
    font-size: 1rem;
  }
  .passreulst {
    box-shadow: none !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  body {
    background: #ffffff;
  }
  .branding {
    width: 100%;
    height: 100%;
  }
  .myhead {
    background: none;
    height: 100%;
  }

  .main-navigation {
    text-align: left;
  }
  .main-navigation .menu li {
    display: block;
  }
  .main-navigation .menu li:hover > a {
    color: #fff100;
    text-decoration: none;
  }
  .main-navigation .menu li ul {
    visibility: visible;
    padding: 0px 0px 0px 20px;
    margin: 0;
    position: relative;
    top: 0;
    width: 100%;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .topline {
    padding: 0;
  }
  .hhtext {
    text-align: center;
    letter-spacing: 1px;
    font-size: 1rem;
  }
  .shotline {
    font-size: 1.3rem;
  }
  .logo-img {
    height: 100px;
  }
  .copyright span {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
  .container {
    padding: 0;
  }
  .row {
    margin: 0;
  }
  .main {
    padding: 0;
  }
  .mycol1 {
    padding: 0;
  }
  .mycol2 {
    padding: 0;
  }

  .topright {
    padding: 0 10px;
  }

  .topbtns {
    padding: 0;
  }
}

/* navbar */
.navbar-header {
  text-align: center;
}

.navbar-header i {
  height: 56px;
  line-height: 56px;
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 767px) {
  .nav-toggle-button {
    display: none;
  }
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

/*====================================================
	footer
====================================================*/
.main-footer {
  background: #202020;
  padding: 35px 0 0;
  color: #959595;
}
.main-footer .widget .title {
  color: #ffffff;
  border-bottom: 1px solid #303030;
}
.main-footer .widget .tag-cloud a {
  border: 1px solid #303030;
}
.main-footer .widget .tag-cloud a:hover {
  border: 1px solid #e67e22;
}
.main-footer .widget .friend-links a {
  border: none;
}
.main-footer .widget .friend-links a:hover {
  border: none;
}
.main-footer .widget .friend-links hr {
  margin: 1em 0;
  border-top: 1px dashed #303030;
}
.main-footer .widget .recent-post .recent-single-post {
  border-bottom: 1px dashed #303030;
}
.main-footer .widget .recent-post .recent-single-post .post-title {
  color: #959595;
}
.main-footer .widget .recent-post .recent-single-post .post-title:hover {
  color: #e67e22;
}
.main-footer .widget .recent-post .recent-single-post .date {
  color: #505050;
}
.copyright {
  background: #a62584;
  text-align: center;
  color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.copyright span {
  margin: 0 0.5rem;
}

.copyright a {
  color: #ffffff;
}

.copyright a:hover {
  color: #ffffff;
  text-decoration: none;
}

#back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: rgba(230, 126, 34, 0.6);
  color: #ffffff;
  text-align: center;
  border-radius: 2px;
  z-index: 1;
  display: none;
}
#back-to-top:hover {
  background: #e67e22;
}
#back-to-top i {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) and (orientation: portrait) {
  .brXsm {
    display: block;
  }
  .copyright {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .copyright {
    line-height: 1rem;
    padding: 0.5rem 0;
  }
  .copyright {
    margin-bottom: 40px;
  }
  body {
    height: auto;
  }
}

.alert {
  background-color: #fffee1 !important;
  color: #daac50 !important;
  border: 1px solid #f5c056 !important;
}

.alert.alert-error {
  background-color: #fdeaea !important;
  color: #ca6f74 !important;
  border: 1px solid #f27b81 !important;
}

.alert.alert-success {
  background-color: #edf6e5 !important;
  color: #7a9659 !important;
  border: 1px solid #9fc76f !important;
}

.alert.alert-info {
  background-color: #e9f8ff !important;
  color: #5d9fa9 !important;
  border: 1px solid #75c7d3 !important;
}

.alert.alert-normal {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d5d5d5 !important;
}

.alert.alert-booking {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d5d5d5 !important;
}

.wbg {
  background: #ffffff;
}

.navlink {
  padding: 5px 5px 0 5px;
}

.navlink a {
  color: #333333;
}

.fs-1 {
  font-size: 2.5rem;
}
.fs-2 {
  font-size: 2rem;
}
.fs-3 {
  font-size: 1.75rem;
}
.fs-4 {
  font-size: 1.5rem;
}
.fs-5 {
  font-size: 1.25rem;
}
.fs-6 {
  font-size: 1rem;
}
.fs-7 {
  font-size: 0.9rem;
}
.fs-8 {
  font-size: 0.75rem;
}
.p-0 {
  padding: 0 !important;
}
