/************ font-face ************/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Martel:wght@300;400&family=Work+Sans&display=swap");
@font-face {
  font-family: "Didot";
  src: url(../font/Didot.ttc);
}

@font-face {
  font-family: "NotoSerifCJKtc";
  font-weight: bolder;
  src: url(../font/NotoSerifCJKtc-Black.otf);
}

@font-face {
  font-family: "NotoSerifCJKtc";
  font-weight: bold;
  src: url(../font/NotoSerifCJKtc-Bold.otf);
}

@font-face {
  font-family: "NotoSerifCJKtc";
  font-weight: normal;
  src: url(../font/NotoSerifCJKtc-Regular.otf);
}

@font-face {
  font-family: "NotoSerifCJKtc";
  font-weight: lighter;
  src: url(../font/NotoSerifCJKtc-Light.otf);
}

/************ varaibles ************/
/************ layouts ************/
body,
input,
textarea,
select {
  font-family: 'Lato', Arial, Helvetica, sans-serif, "Microsoft JhengHei";
  font-size: 16px;
  font-weight: 300;
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

.desktop {
  display: block;
}

@media (max-width: 992px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}

@media (max-width: 992px) {
  .mobile {
    display: block;
  }
}

.theme-1 {
  background-color: #F8E0CB;
  color: #F47A5C;
}

.theme-1 > .slider-item-button {
  color: #F47A5C !important;
}

.theme-2 {
  background-color: #CC9583;
  color: #FFFFFF;
}

.theme-2 > .slider-item-button {
  color: #FFFFFF !important;
}

.theme-3 {
  background-color: #E87D60;
  color: #FFFFFF;
}

.theme-3 > .slider-item-button {
  color: #FFFFFF !important;
}

.theme-4 {
  background-color: #E4B6A5;
  color: #FFFFFF;
}

.theme-4 > .slider-item-button {
  color: #FFFFFF !important;
}

.theme-5 {
  background-color: #FAB393;
  color: #6C6C6C;
}

.theme-5 > .slider-item-button {
  color: #FFFFFF !important;
}

body {
  color: #F47A5C;
}

.loader-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
  opacity: 0.85;
  background-color: #FFFFFF;
}

.loader-mask.loaded {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

.loader-mask.done {
  display: none;
}

.loader-mask .spinner-container {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header {
  height: 120px;
  background-color: #F8E0CB;
  text-align: center;
  position: relative;
}

.header .logo {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .logo img {
  width: 100%;
}

.header .language-selector {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.header .language-selector a {
  text-decoration: none;
  color: #F47A5C;
}

.header .language-selector .active {
  font-weight: bold;
}

.header-banner img {
  width: 100%;
  -webkit-box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .header-banner img {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.footer {
  padding: 30px 0px;
  background-color: #FAECE3;
  font-size: 14px;
  text-align: left;
}

@media (max-width: 992px) {
  .footer {
    font-size: 12px;
  }
}

.body .nav-container {
  margin: auto;
  background-color: #fff;
  text-align: center;
  margin: 30px 0px;
}

@media (max-width: 992px) {
  .body .nav-container .row {
    width: 80%;
    margin: auto;
    text-align: center;
  }
}

.body .nav-container .logo {
  width: 300px;
  margin: auto;
}

.body .nav-container .logo canvas {
  width: 300px;
  height: 300px;
}

.body .nav-container .logo img {
  width: 100%;
}

.body .nav-container .description {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 2rem;
  color: #6C6C6C;
  width: 70%;
  margin: auto;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .body .nav-container .description {
    width: 100%;
    font-size: 14px;
    line-height: 1.5rem;
  }
}

.body .body-container {
  padding-top: 60px;
  -webkit-box-shadow: 0px -5px 20px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -5px 20px 10px rgba(0, 0, 0, 0.1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FEFCFA), color-stop(#FAE9DA), to(#F8E0CB));
  background-image: linear-gradient(#FEFCFA, #FAE9DA, #F8E0CB);
}

@media (max-width: 992px) {
  .body .body-container {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.tab-pane {
  position: relative;
  z-index: 2;
}

.tab-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  z-index: -1;
}

.tab-mask.bg-fadeIn {
  opacity: 1;
  -webkit-animation: fadeIn 1s linear;
          animation: fadeIn 1s linear;
}

.tab-mask.bg-fadeOut {
  opacity: 0;
  -webkit-animation: fadeOut 1s linear;
          animation: fadeOut 1s linear;
}

#alfred-hui .tab-mask {
  background-image: url("../image/general/alfred-hui-background.png");
}

#gigi-leung .tab-mask {
  background-image: url("../image/general/gigi-leung-background-left.png"), url("../image/general/gigi-leung-background-right.png");
  background-position: left top, right -20%;
  background-size: 100% 100%, 30% 30%;
  background-repeat: no-repeat;
}

#dickson-yu .tab-mask {
  background-image: url("../image/general/dickson-yu-background.png");
}

.nav {
  border-top: 1px solid #F47A5C;
  border-bottom: none;
}

@media (max-width: 992px) {
  .nav {
    border-bottom: 1px solid #F47A5C;
  }
}

.nav .nav-item {
  padding: 20px 0px;
  width: 33.33%;
}

@media (max-width: 992px) {
  .nav .nav-item {
    padding: 0px;
    width: 100%;
  }
}

.nav .nav-item .nav-link {
  width: 100%;
  border: none;
  font-size: 28px;
  color: #F47A5C;
  padding: 20px 50px;
  border-right: 1px solid #F47A5C;
  border-radius: 0px;
  text-transform: uppercase;
  background-color: transparent;
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  .nav .nav-item .nav-link {
    border-right: 0px;
    padding: 15px 50px;
    font-size: 20px;
  }
}

.nav .nav-item .nav-link:hover {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav .nav-item:last-child .nav-link {
  border: none;
}

/************ tab ************/
.checkpoint-title {
  font-size: 40px;
  text-transform: uppercase;
  padding: 30px 0px;
  font-family: "Didot";
}

.checkpoint-video-background {
  width: 100%;
  background-color: rgba(248, 224, 203, 0.5);
  margin: 30px 0px;
}

@media (max-width: 992px) {
  .checkpoint-video-background {
    padding: 0px;
  }
}

.checkpoint-video-background-mask {
  margin: auto;
  width: 80%;
  text-align: center;
  background-color: rgba(248, 224, 203, 0.5);
}

@media (max-width: 992px) {
  .checkpoint-video-background-mask {
    width: 100%;
  }
}

.checkpoint-video-background-mask .checkpoint-video {
  width: 80%;
}

@media (max-width: 992px) {
  .checkpoint-video-background-mask .checkpoint-video {
    width: 100%;
  }
}

.checkpoint-slide {
  padding: 60px 0px;
}

.checkpoint-slide .checkpoint-image {
  width: 100%;
  padding: 0px;
}

.checkpoint-slide .checkpoint-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

@media (max-width: 992px) {
  .checkpoint-slide .checkpoint-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.checkpoint-slide .checkpoint-description {
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  line-height: 2rem;
  padding: 30px;
  position: relative;
  left: 0px;
  color: #6C6C6C;
  white-space: pre-line;
}

@media (max-width: 992px) {
  .checkpoint-slide .checkpoint-description {
    text-align: left;
    font-size: 14px;
    line-height: 1.5rem;
    padding: 15px;
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: initial;
            transform: initial;
  }
}

.checkpoint-slide .checkpoint-description-title {
  display: block;
  font-size: 22px;
  line-height: 1.5rem;
  font-weight: 300;
  margin-bottom: 8px;
  font-family: 'Martel', serif, "Microsoft JhengHei";
  color: #4A4A4A;
}

/************ slider ************/
.carousel {
  padding: 0px;
}

.carousel .carousel-inner {
  height: 100%;
  max-height: 515px;
  background-color: #FFFFFF;
}

.carousel .carousel-inner .slider-item {
  width: 50%;
  float: left;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .slider-item {
    width: 50%;
  }
}

.carousel .carousel-inner .slider-item .slider-item-image {
  width: 240px;
  height: 240px;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .slider-item .slider-item-image {
    width: 100%;
    height: 300px;
  }
}

.carousel .carousel-inner .slider-item .slider-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel .carousel-inner .slider-item .slider-container {
  height: 120px;
  padding: 15px;
}

.carousel .carousel-inner .slider-item .slider-item-title {
  font-size: 14px;
  letter-spacing: 0px;
  height: 42px;
  display: none;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .slider-item .slider-item-title {
    font-size: 16px;
    height: 48px;
  }
}

.carousel .carousel-inner .slider-item .slider-item-pid {
  font-size: 12px;
  display: none;
}

.carousel .carousel-inner .slider-item .slider-item-button-container {
  width: 80%;
  margin: auto;
  padding: 2px;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .slider-item .slider-item-button-container {
    width: 65%;
  }
}

.carousel .carousel-inner .slider-item .slider-item-button {
  width: 100%;
  color: #FFFFFF;
  display: block;
  padding: 4px 0;
  text-align: center;
  margin: auto;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  cursor: auto;
  font-weight: 300;
}

.carousel .carousel-inner .slider-item a {
  text-decoration: none;
}

.carousel .carousel-inner .slider-item a .slider-item-button {
  cursor: pointer;
}

.carousel .carousel-inner .carousel-item > div {
  display: none;
}

.carousel .carousel-inner .carousel-item > div:first-child, .carousel .carousel-inner .carousel-item > div:nth-child(2) {
  display: block;
}

.carousel .carousel-inner .carousel-item-end.active,
.carousel .carousel-inner .carousel-item-next {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.carousel .carousel-inner .carousel-item-start.active,
.carousel .carousel-inner .carousel-item-prev {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.carousel .carousel-inner .carousel-item-end,
.carousel .carousel-inner .carousel-item-start {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.carousel .carousel-control-next {
  width: 10%;
  height: calc(100% - 120px);
}

.carousel .carousel-control-next-icon {
  width: 16px;
  height: 29px;
  background-image: url("../image/slider/slider-button-next.png");
}

.carousel .carousel-control-prev {
  width: 10%;
  height: calc(100% - 120px);
}

.carousel .carousel-control-prev-icon {
  width: 16px;
  height: 29px;
  background-image: url("../image/slider/slider-button-prev.png");
}

.carousel .carousel-indicators {
  margin-bottom: 0.5rem;
  bottom: 0px;
}

.carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

/************ animation ************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/************ En Elements ************/
html[lang=en] .checkpoint-description {
  line-height: 1.5rem !important;
  text-transform: initial;
}

@media (max-width: 992px) {
  html[lang=en] .checkpoint-description {
    line-height: 1.2rem !important;
  }
}

html[lang=en] .carousel .carousel-inner .slider-item .slider-item-title {
  white-space: normal !important;
}

@media (max-width: 992px) {
  html[lang=en] .carousel .carousel-inner .slider-item .slider-item-button-container {
    width: 70%;
  }
}

@media (max-width: 992px) {
  html[lang=en] .carousel .carousel-inner .slider-item .slider-item-button-container .slider-item-button {
    padding: 4px 0px;
  }
}
/*# sourceMappingURL=main.css.map */