body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  font-family: "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: constant(safe-area-inset-top);
  padding-right: constant(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-left: constant(safe-area-inset-left); }

img.full-image {
  width: 100%; }

#goTop,
#sticky-menu {
  display: none; }

.footers {
  display: flex;
  align-items: center;
  justify-content: center; }

.contact-form {
  background: white;
  padding: 50px 120px; }
  .contact-form label,
  .contact-form .form-control {
    font-size: 2.2rem; }
  .contact-form h2.no-background {
    font-size: 2.4rem;
    text-align: center;
    position: relative;
    overflow: hidden; }
    .contact-form h2.no-background span {
      display: inline-block;
      vertical-align: baseline;
      zoom: 1;
      *display: inline;
      *vertical-align: auto;
      position: relative;
      padding: 0 20px; }
      .contact-form h2.no-background span:before, .contact-form h2.no-background span:after {
        content: "";
        display: block;
        width: 1000px;
        position: absolute;
        top: 1.3em;
        border-top: 1px solid #43403b; }
      .contact-form h2.no-background span:before {
        right: 100%; }
      .contact-form h2.no-background span:after {
        left: 100%; }
  .contact-form .btn {
    font-size: 2.2rem;
    padding: 10px 60px;
    height: 80px; }

.posr {
  position: relative; }

form .posr > div.error {
  position: absolute;
  top: 72px;
  right: 15px;
  color: red;
  font-size: 1.8rem;
  z-index: 100; }

.form-group input.error {
  border-color: red; }
.form-group textarea.error {
  border-color: red; }

.carousel-wrapper .item {
  position: relative; }
  .carousel-wrapper .item .caption {
    color: white;
    font-size: 1.18rem;
    position: absolute;
    bottom: 12px;
    right: 10px; }

#goTop,
#sticky-menu {
  display: none; }

.d-sm-none {
  display: none; }

.html-code-container p {
  margin-bottom: 0; }

.location-maps-container {
  margin-bottom: -6px; }

.footers-container p {
  margin-top: auto;
  margin-bottom: auto; }
.ani-component {
  visibility: hidden;
  display: none; }
  .ani-component.animated {
    visibility: visible;
    opacity: 1; }
  @media (max-width: 767px) {
    .ani-component.mobile {
      display: block; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    .ani-component.tablet {
      display: block; } }
  @media (min-width: 1024px) {
    .ani-component.desktop {
      display: block; } }

@keyframes clip_right {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); } }
@keyframes clip_left {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); } }
@keyframes clip_top {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
@keyframes clip_bottom {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } }
.clip_right {
  animation-name: clip_right; }

.clip_left {
  animation-name: clip_left; }

.clip_top {
  animation-name: clip_top; }

.clip_bottom {
  animation-name: clip_bottom; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes rotateCounterclockwise {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(-360deg); } }
.zoomIn {
  animation-name: zoomIn; }

.rotateClockwise {
  animation-name: rotateClockwise; }

.rotateCounterclockwise {
  animation-name: rotateCounterclockwise; }

@keyframes zoomOutFade {
  from {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }
@keyframes flip3d {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }
.zoomOutFade {
  animation-name: zoomOutFade; }

.flip3d {
  backface-visibility: visible !important;
  animation-name: flip3d; }

@keyframes shakeX {
  0%,
  100% {
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px); } }
.shakeX {
  animation-name: shake; }

@keyframes fadeInDown30 {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInUp30 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInLeft30 {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInRight30 {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
.fadeInDown30 {
  animation-name: fadeInDown30; }

.fadeInUp30 {
  animation-name: fadeInUp30; }

.fadeInLeft30 {
  animation-name: fadeInLeft30; }

.fadeInRight30 {
  animation-name: fadeInRight30; }
.bg-sliders-container {
  width: 100%;
  height: 600px; }
  .bg-sliders-container #slideshow .slide {
    left: 15px;
    right: 15px;
    overflow: hidden; }

.carousel-wrapper .owl-nav, .carousel-wrapper .owl-dots {
  display: none; }

.video-bgs-container {
  padding: 0 15px; }

.video-bg {
  margin-bottom: -6px; }
  .video-bg .video-bg-overlay {
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    right: 15px;
    width: calc(100% - 30px);
    height: auto;
    z-index: 1; }
  .video-bg video {
    width: 100%;
    height: auto;
    z-index: -1; }
@media (max-width: 576px) {
  body {
    height: 100%;
    position: relative; }

  #appWrapper {
    position: relative; }

  .col-12 {
    padding-left: 0;
    padding-right: 0; }

  .gmap {
    width: 100%;
    overflow: hidden; }

  .contact-form {
    background: white;
    padding: 50px 20px; }
    .contact-form label,
    .contact-form .form-control {
      font-size: 1.15rem; }
    .contact-form h2.no-background {
      font-size: 1.15rem;
      text-align: center;
      position: relative;
      overflow: hidden; }
      .contact-form h2.no-background span {
        display: inline-block;
        vertical-align: baseline;
        zoom: 1;
        *display: inline;
        *vertical-align: auto;
        position: relative;
        padding: 0 20px; }
        .contact-form h2.no-background span:before, .contact-form h2.no-background span:after {
          content: '';
          display: block;
          width: 1000px;
          position: absolute;
          top: 1.3em;
          border-top: 1px solid #43403b; }
        .contact-form h2.no-background span:before {
          right: 100%; }
        .contact-form h2.no-background span:after {
          left: 100%; }
    .contact-form .btn {
      font-size: 1.15rem;
      padding: 8px 26px;
      height: 46px; }

  form .posr > div.error {
    position: absolute;
    top: 45px;
    right: 5px;
    color: red;
    font-size: 1rem;
    z-index: 100; }

  #goTop {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 60px;
    right: 15px;
    z-index: 9999;
    border: none;
    outline: none;
    color: white;
    padding: 5px 0;
    border-radius: 10px;
    transition: all 0.8s;
    width: 60px;
    height: 60px;
    border-radius: 50% 50%;
    font-size: 2.1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    background: #f2f6f8;
    background: -moz-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #f2f6f8), color-stop(50%, #d8e1e7), color-stop(51%, #b5c6d0), color-stop(100%, #43403b));
    background: -webkit-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -o-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -ms-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: linear-gradient(135deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#43403b', GradientType=1 ); }

  .bg-sliders-container {
    width: 100%;
    height: 500px; }
    .bg-sliders-container #slideshow .slide {
      left: 0;
      right: 0; }

  .carousel-wrapper {
    position: relative; }
    .carousel-wrapper .owl-theme .owl-nav, .carousel-wrapper .owl-theme .owl-dots {
      display: block; }
    .carousel-wrapper .owl-theme .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      text-align: center;
      margin-top: -46px; }
      .carousel-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 14px;
        height: 14px;
        border: 2px solid white;
        background: transparent; }
      .carousel-wrapper .owl-theme .owl-dots .owl-dot.active span {
        background: white; }
    .carousel-wrapper .owl-theme .owl-nav [class*='owl-']:hover {
      background: transparent; }
    .carousel-wrapper .owl-theme .owl-nav {
      margin: 0; }
      .carousel-wrapper .owl-theme .owl-nav .owl-next, .carousel-wrapper .owl-theme .owl-nav .owl-prev {
        position: absolute;
        top: 35%;
        color: white;
        font-size: 3.6rem;
        opacity: 1; }
      .carousel-wrapper .owl-theme .owl-nav .owl-prev {
        left: 2%; }
      .carousel-wrapper .owl-theme .owl-nav .owl-next {
        right: 2%; }

  #goTop {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 60px;
    right: 15px;
    z-index: 9999;
    border: none;
    outline: none;
    color: white;
    padding: 5px 0;
    border-radius: 10px;
    transition: all 0.8s;
    width: 60px;
    height: 60px;
    border-radius: 50% 50%;
    font-size: 2.1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    background: #f2f6f8;
    background: -moz-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #f2f6f8), color-stop(50%, #d8e1e7), color-stop(51%, #b5c6d0), color-stop(100%, #43403b));
    background: -webkit-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -o-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: -ms-linear-gradient(-45deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    background: linear-gradient(135deg, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #43403b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f6f8', endColorstr='#43403b', GradientType=1 ); }

  #sticky-menu {
    display: flex;
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    z-index: 99;
    border-top: 2px solid #fff;
    background: #43403b;
    font-size: 1.1rem; }
    #sticky-menu .menu {
      flex: 1;
      text-align: center;
      border: 1px solid #fff;
      border-top: none;
      border-bottom: none; }
      #sticky-menu .menu:last-child {
        border-right: none; }
      #sticky-menu .menu:first-child {
        border-left: none; }
      #sticky-menu .menu a {
        color: #fff; }

  .d-sm-none {
    display: none; } }
/*




*/
