@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
:root {
  --primary-default: #3686b7;
  --primary-tint: rgb(153, 203, 235);
  --primary-dark: #14314d;
  --color-gray: #232429; /* Same */
  --color-gray-900: #393a3f; /* New */
  --color-gray-800: #55565b; /* Davi's Grey */
  --color-gray-700: #75767b; /* Moiety */
  --color-gray-600: #828388; /* Old Silver */
  --color-gray-500: #919297; /* Gray Blue */
  --color-gray-400: #adaeb3; /* Gravity */
  --color-gray-300: #c1c2c7; /* Seashell */
  --color-gray-200: #d3d4d9; /* Light Gray */
  --color-gray-100: #dedfe4; /* Light Diamond */
  --color-gray-050: #f3f4f9; /* White Smoke */
  --color-gray-025: #f9faff; /* White Smoke Light */
  --border-line: 1px solid #ffffff;
  --box-shadow: 0px 1px 5px #565656;
}

.service__item .service__img, .hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ind p, .about__text::before, .img__banner h3, .swiper-container::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* >common設定================================================================================*/
.none {
  display: none;
}

.text-align-center {
  text-align: center;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

/*Font Size =================================================*/
.fs-5 {
  font-size: 20px;
}

/*定位系列 ==================================================*/
.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-5 {
  z-index: 5;
}

/* 寬高系列 ================================================*/
.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.h-100 {
  height: 100%;
}

/* flex系列 ============================================*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 991px) {
  .flex-md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 991px) {
  .justify-content-md-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.justify-content-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 991px) {
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 991px) {
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* 行高系列 ==============================================*/
.lh-lg {
  line-height: 2;
}

/* margin系列 ===========================================*/
/*上下-左右系列*/
.mx-auto {
  margin: 0 auto;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-5 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

@media (min-width: 767px) {
  .my-sm-0 {
    margin-top: 0;
  }
}

@media (min-width: 767px) {
  .my-sm-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .my-md-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 991px) {
  .my-md-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .my-md-10 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.ml-auto {
  margin-left: auto;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.ml-5 {
  margin-left: 3rem;
}

.ml-6 {
  margin-left: 5rem;
}

.ml-7 {
  margin-left: 7rem;
}

@media (min-width: 991px) {
  .ml-md-auto {
    margin-left: auto;
  }
}

@media (min-width: 767px) {
  .ml-sm-2 {
    margin-left: 0.5rem;
  }
}

@media (min-width: 991px) {
  .ml-md-5 {
    margin-left: 5rem;
  }
}

.mr-auto {
  margin-right: auto;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mr-5 {
  margin-right: 3rem;
}

.mr-5-2 {
  margin-right: 4rem;
}

.mr-6 {
  margin-right: 5rem;
}

.mr-7 {
  margin-right: 7rem;
}

@media (min-width: 991px) {
  .mr-md-3 {
    margin-right: 1rem;
  }
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mt-6 {
  margin-top: 5rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mt-12 {
  margin-top: 12rem;
}

@media (min-width: 575px) {
  .mt-xs-10 {
    margin-top: 10rem;
  }
}

@media (min-width: 991px) {
  .mt-md-6 {
    margin-top: 5rem;
  }
}

@media (min-width: 991px) {
  .mt-md-15 {
    margin-top: 15rem;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-6 {
  margin-bottom: 5rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

@media (min-width: 767px) {
  .mb-sm-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 767px) {
  .mb-sm-5 {
    margin-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .mb-md-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 991px) {
  .mb-md-5 {
    margin-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .mb-md-10 {
    margin-bottom: 10rem;
  }
}

/* padding系列 ===================================*/
/*上下-左右系列*/
.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 767px) {
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 767px) {
  .py-sm-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 991px) {
  .py-md-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .py-md-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

/*padding-left*/
.pl-auto {
  padding-left: auto;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pl-5 {
  padding-left: 3rem;
}

.pl-5-2 {
  padding-left: 4rem;
}

.pl-6 {
  padding-left: 5rem;
}

.pl-7 {
  padding-left: 7rem;
}

/*padding-right*/
.pr-auto {
  padding-right: auto;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pr-5 {
  padding-right: 3rem;
}

.pr-5-2 {
  padding-right: 4rem;
}

.pr-6 {
  padding-right: 5rem;
}

.pr-7 {
  padding-right: 7rem;
}

/*padding-top*/
.pt-0 {
  padding-top: 0;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pt-6 {
  padding-top: 5rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.pb-6 {
  padding-bottom: 5rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

@media (min-width: 767px) {
  .pb-sm-0 {
    padding-bottom: 0;
  }
}

@media (min-width: 767px) {
  .pb-sm-5 {
    padding-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .pb-md-0 {
    padding-bottom: 0;
  }
}

@media (min-width: 991px) {
  .pb-md-5 {
    padding-bottom: 3rem;
  }
}

@media (min-width: 991px) {
  .pb-md-10 {
    padding-bottom: 10rem;
  }
}

/*bootstrap 5 columns*/
.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 20%;
  float: left;
}

@media (max-width: 575px) {
  .col-xs-1-5 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .col-sm-1-5 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .col-md-1-5 {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .col-lg-1-5 {
    width: 100%;
  }
}

/*container容器斷點================================*/
@media (max-width: 575px) {
  .container-xs {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .container-sm {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .container-md {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .container-lg {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

/* >小梯形方塊 ==================================================================*/
.title__wrap {
  position: relative;
  width: 240px;
}

.title__item {
  width: 240px;
  height: 100px;
}
.title__item--s {
  width: 120px;
  height: 40px;
  position: absolute;
  bottom: -2.5rem;
  right: 0;
}
.title__item--s figure {
  width: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.title__item--m {
  width: 150px;
  height: 40px;
  position: absolute;
  bottom: -2.5rem;
  right: 0;
}
.title__item--m figure {
  width: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.title__item--l {
  width: 280px;
}
.title__item--l figure {
  width: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.title__item span,
.title__item h1 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  z-index: 3;
  padding-left: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.title__item h1 {
  font-size: 20pt;
  color: #fff;
}
.title__item span {
  color: var(--color-gray-700);
  padding-left: 1rem;
}

.figure__trap {
  background-color: rgb(0, 0, 0);
  width: inherit;
  height: inherit;
  -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  position: absolute;
  top: 0;
  z-index: 1;
}
.figure__trap--white {
  background-color: #fff;
}
.figure__shadowWrap {
  position: relative;
  z-index: 2;
  width: inherit;
  height: inherit;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6039215686));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6039215686));
}

/* >大梯形方塊 ==================================================================*/
.figure__trapezoid {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
  background-color: var(--primary-dark);
  opacity: 0.6;
  width: 60%;
  height: 75%;
  -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
@media (max-width: 991px) {
  .figure__trapezoid {
    width: 100%;
    height: 100%;
    top: 50%;
    -webkit-clip-path: none;
            clip-path: none;
  }
}

/* >圓角 ====================================================================*/
.figure__radius {
  background: -webkit-gradient(linear, left top, left bottom, from(#1c456e), to(#3586d4));
  background: linear-gradient(to bottom, #1c456e, #3586d4);
  max-width: 600px;
  width: 100%;
  height: 90%;
  position: absolute;
  top: 0;
  right: auto;
  left: 50%;
  bottom: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0 0 50rem 50rem;
}
@media (max-width: 767px) {
  .figure__radius {
    width: 95%;
  }
}

/* >文字 =======================================================================*/
/* >Text =======================================================================*/
.text__p {
  font-size: 16px;
  line-height: 4rem;
  color: #fff;
}

/* >按鈕 =========================================================================*/
/* >Button =======================================================================*/
/*漂浮圖案 icon相關*/
.icon__scroll {
  position: absolute;
  left: 50%;
  bottom: -5rem;
  opacity: 0.7;
  -webkit-animation: float 2.5s infinite;
          animation: float 2.5s infinite;
  color: #fff;
}

/*細調使所有圖案大小都相似*/
.fa-square-facebook {
  font-size: 32px;
}

.fa-envelope {
  font-size: 38px;
}

/*主要按鈕*/
.btn__more {
  display: inline-block;
  text-align: center;
  line-height: 2.5;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 1rem 0rem;
  width: 6rem;
  height: 6rem;
  color: #fff;
  border-radius: 50%;
  outline: 1px currentColor solid;
  outline-offset: 0.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn__more:hover {
  text-decoration: none;
  outline: 5px double #fff;
  background-color: #fff;
  color: var(--primary-dark);
  outline-offset: 0rem;
}
.btn__top {
  width: 50px;
  height: 50px;
  z-index: 99;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  color: #fff;
  border: 1px solid currentColor;
  padding: 1.2rem;
  text-align: center;
  border-radius: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(-2rem);
      -ms-transform: translateY(-2rem);
          transform: translateY(-2rem);
  opacity: 0;
}
.btn__top:hover {
  cursor: pointer;
  background-color: var(--primary-dark);
}
.btn__top.active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*BS內建按鈕 修正*/
.btn-info {
  background-color: var(--primary-default);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* >動畫 =======================================================*/
/* 漂浮 ------*/
@-webkit-keyframes float {
  0% {
    -webkit-transform: translate(-50%, -1rem);
            transform: translate(-50%, -1rem);
  }
  50% {
    -webkit-transform: translate(-50%, 0rem);
            transform: translate(-50%, 0rem);
  }
  100% {
    -webkit-transform: translate(-50%, -1rem);
            transform: translate(-50%, -1rem);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translate(-50%, -1rem);
            transform: translate(-50%, -1rem);
  }
  50% {
    -webkit-transform: translate(-50%, 0rem);
            transform: translate(-50%, 0rem);
  }
  100% {
    -webkit-transform: translate(-50%, -1rem);
            transform: translate(-50%, -1rem);
  }
}
/* >Swiper-------------------------------------------------*/
.swiper-container {
  position: relative;
  width: 100%;
  margin: auto;
}
.swiper-container::after {
  content: "";
  top: 40%;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 1px;
  max-width: 80%;
}
@media (max-width: 991px) {
  .swiper-container::after {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .swiper-container::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .swiper-container {
    width: 90%;
  }
}

.swiper {
  margin: 0 3rem;
  padding: 2rem 0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination.swiper-pagination-1 {
  bottom: -2rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 20px);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 20px);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  text-shadow: 1px 1px 10px #686868;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px;
}

.swiper-pagination-bullet {
  background-color: rgb(127.5, 127.5, 127.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* >主選單 navbar--------------------------------------------------------*/
.navbar__wrap {
  background: #000;
}
@media (max-width: 767px) {
  .navbar__wrap {
    width: 100%;
    position: fixed;
    z-index: 9999;
  }
}

/* ?rwd navbar高度*/
@media (max-width: 991px) {
  .navbar {
    min-height: 82px;
  }
}

/* logo*/
.navbar-brand img {
  max-width: 250px;
  width: 100%;
}

/*menu*/
.menu {
  border-bottom: var(--border-line);
}
.menu__logo img {
  width: 250px;
  margin: 1rem;
}
.menu__item {
  margin: 1rem 2.5rem 0.5rem 0rem;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__item i {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateX(-15px);
      -ms-transform: translateX(-15px);
          transform: translateX(-15px);
  margin-right: 4px;
  opacity: 0;
}
.menu__item a {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__item a:hover {
  text-decoration: none;
  color: rgb(178.5, 178.5, 178.5);
}
.menu__item + .menu__item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: -0.2rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__item:hover {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
}
.menu__item:hover i {
  opacity: 1;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  color: rgb(178.5, 178.5, 178.5);
}
.menu__item:hover::after {
  left: -1.5rem;
}
@media (max-width: 991px) {
  .menu {
    background: url("../../images/menu__bg.png") no-repeat center/cover;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    height: 0;
    overflow: hidden;
  }
  .menu__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
    width: 100%;
  }
  .menu__item span {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    display: inline-block;
    margin-left: 1.5rem;
  }
  .menu__item a {
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.3019607843);
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
  }
  .menu li + li {
    border-top: 1px solid #fff;
  }
}
.menu.active {
  height: 300px;
  display: block;
}

/* >副選單(會員登入 購物車等)-------------------------------------------------------------------*/
/*搜尋*/
.top-search {
  background-color: var(--color-gray);
  padding: 10px 2rem;
  display: none;
}

.top-search input.form-control {
  background-color: #fff;
}

.menu__sub {
  width: 100%;
  background-color: var(--color-gray);
  position: relative;
}
@media (max-width: 1199px) {
  .menu__sub {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}

.navbar-header .fa-search,
.navbar-header .fa-bars,
.navbar-header .fa-times {
  color: #fff;
}

/* 副選單標題*/
.navbar-nav {
  margin: 0;
}
.navbar-nav li {
  padding: 0;
}
.navbar-nav li a {
  color: #fff;
}

/*購物車(包含rwd修正的部分)*/
.badge {
  background-color: #856565;
}

.shop td {
  background: transparent;
}
.shop td a {
  color: #000;
}
.shop .btn__shop {
  background-color: transparent;
  color: #f7f3ef;
  padding: 0;
}
.shop .cart_list a:hover {
  background-color: #c9302c;
}
.shop .dropdown,
.shop .dropup {
  position: static;
}
.shop .dropdown-menu {
  right: 5rem;
}

/* ?為了讓購物車rwd時寬度100% 要將li的relative解除*/
.toplink li {
  position: static;
}

/*購物車rwd修改*/
@media (max-width: 767px) {
  .shop .open .dropdown-menu {
    display: inline-block !important;
  }
  .shop .dropdown-menu {
    background-color: #fff !important;
    position: absolute !important;
    display: none !important;
    top: 100%;
    right: 0;
    left: auto;
    width: 100% !important;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border: 1px solid rgba(0, 0, 0, 0.15);
  }
  .shop .btn__shop {
    padding: 0;
  }
  .shop .dropdown {
    display: flow-root;
  }
  .shop #dropdownMenu1 {
    float: right;
  }
  .shop .cart_list table {
    width: auto;
  }
  .shop .cart_list table tr td {
    min-width: auto;
    width: 10%;
  }
}
/* >漢堡選單 ---------------------------------------------------------------------------------*/
.hamburger {
  margin: 2rem 1rem 2rem auto;
  position: relative;
  z-index: 999;
  width: 5rem;
  height: 5rem;
  background: transparent;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  width: 3rem;
  height: 0.35rem;
  background-color: var(--color-gray-100);
  -webkit-transition: inherit;
  transition: inherit;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  background-color: inherit;
  width: inherit;
  height: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 50%;
}
.hamburger span::before {
  -webkit-transform: translate(-50%, -8px);
      -ms-transform: translate(-50%, -8px);
          transform: translate(-50%, -8px);
}
.hamburger span::after {
  -webkit-transform: translate(-50%, 8px);
      -ms-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
}
.hamburger.active span {
  background-color: transparent;
}
.hamburger.active span::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  left: 0;
}
.hamburger.active span::after {
  left: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 3rem;
  background-color: #fff;
}

/* >頁尾 footer--------------------------------------------------------*/
.footerwrap {
  position: relative;
}
.footer__logo {
  max-width: 300px;
}
.footer__logo img {
  width: 100%;
}
.footer__linear {
  position: absolute;
  top: -100px;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(to bottom, transparent, #000);
  height: 100px;
  width: 100%;
}
.footer__nav ul {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 0.5rem;
}
.footer__nav a {
  color: #fff;
  text-decoration: none;
}
.footer__nav a:hover {
  color: #c4c4c4;
}
.footer__content span {
  position: relative;
  margin-right: 1rem;
}
.footer__content span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5rem;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.footer__community {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media (max-width: 767px) {
  .footer__community {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

ol.breadcrumb {
  background-color: #000;
}
ol.breadcrumb li a {
  color: #fff;
}

/* ?navbar是fixed 必須設導覽列的高度*/
.slider {
  margin-top: 60px;
}

/* >分頁版圖----------------------------------------------------------*/
/* ? 分頁版圖設定*/
.img__banner {
  position: relative;
}
.img__banner h3 {
  padding: 1rem 1.5rem;
  margin: 0;
  letter-spacing: 0.2rem;
  border: 1px solid #fff;
  text-shadow: 1px 1px 5px #000;
  -webkit-box-shadow: 1px 1px 5px #000;
          box-shadow: 1px 1px 5px #000;
  color: #fff;
}
.img__banner img {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .img__banner img {
    min-height: 130px;
  }
}

/* >index  -----------------------------------------------------------*/
/* ?slider ----------*/
@media (max-width: 575px) {
  #carousel-generic .carousel-inner img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: auto;
    height: 200px;
  }
}
#carousel-generic:hover .carousel-control {
  opacity: 1;
}
#carousel-generic .carousel-control {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#carousel-generic .carousel-control.left {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.199)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.199) 100%);
}
#carousel-generic .carousel-control.right {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.199)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.199) 100%);
}
#carousel-generic .glyphicon::after, #carousel-generic .glyphicon::before {
  color: #fff;
  border: 2px solid currentColor;
  padding: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 1px 1px 5px #000;
          box-shadow: 1px 1px 5px #000;
}

/* line(橫跨index的線) ----------*/
.index__wrap {
  position: relative;
}
.index__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

/* >service swiper  ---------------------------------------------*/
.service {
  background: url("/hipershop/rwd1839/store/F1/Services__bg.png") no-repeat center/cover;
  height: 95vh;
}
@media (max-width: 767px) {
  .service {
    height: 80vh;
  }
}
.service__item {
  width: 180px;
  margin: 0 auto;
}
.service__item a {
  color: #fff;
  text-decoration: none;
}
.service__item .service__img {
  width: inherit;
  height: 180px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #ffffff), to(var(--primary-dark)));
  background: linear-gradient(to bottom, #ffffff 60%, var(--primary-dark));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service__item .service__img i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 2rem;
  color: #000;
  font-size: 60pt;
}
@media (max-width: 767px) {
  .service__item {
    width: 120px;
  }
  .service__item .service__img {
    height: 120px;
  }
  .service__item .service__img i {
    font-size: 40pt;
  }
}
.service__item:hover .service__img {
  cursor: pointer;
}
.service__item:hover .service__img i {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--primary-dark);
}
.service__text {
  text-align: center;
  padding: 1rem 0rem;
}

/* >about  -----------------------------------------------------*/
.about {
  position: relative;
  height: 95vh;
  overflow: hidden;
}
@media (max-width: 575px) {
  .about {
    height: 115vh;
  }
}
.about__img {
  position: absolute;
}
.about__img--top {
  top: 0;
  right: 12%;
}
.about__img--bottom {
  bottom: 0;
  left: 10%;
}
.about__img--object {
  top: 2rem;
  right: 15%;
}
@media (max-width: 1630px) {
  .about__img--top {
    right: 0%;
  }
  .about__img--bottom {
    left: 0%;
  }
  .about__img--object {
    display: none;
  }
}
@media (max-width: 1250px) {
  .about__img {
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .about__img--object {
    max-width: 300px;
    top: -2rem;
    right: 0.5rem;
    z-index: 2;
    display: block;
  }
}
@media (max-width: 575px) {
  .about__img--object {
    top: 2.5rem;
    right: 0.5rem;
    max-width: 200px;
    z-index: 2;
    display: block;
  }
}
@media (max-width: 410px) {
  .about__img--object {
    display: none;
  }
}
.about__text {
  white-space: nowrap;
  font-size: 25rem;
  letter-spacing: 5rem;
  mix-blend-mode: multiply;
  line-height: 1.3;
  position: relative;
  z-index: 0;
  color: transparent;
}
.about__text::before {
  content: attr(data-text);
  -webkit-text-stroke: 0.2rem var(--primary-tint);
  z-index: -1;
}
.about__text::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.join {
  height: 95vh;
  background: url("../../images/join__bg.jpg") no-repeat center/cover;
}
@media (max-width: 991px) {
  .join {
    height: 75vh;
  }
}
@media (max-width: 767px) {
  .join {
    height: auto;
  }
}

.ind {
  position: relative;
  background: url("/hipershop/rwd1839/store/F1/ind_bg.png") no-repeat center/cover;
  width: 100%;
  height: 70%;
}
@media (max-width: 991px) {
  .ind {
    background: #fff;
    opacity: 0.8;
    height: auto;
  }
}
.ind .row > div {
  position: static;
}
.ind p {
  max-width: 500px;
  color: #000;
}
@media (max-width: 991px) {
  .ind p {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    padding: 4rem 0;
  }
}