@charset "UTF-8";
/*
rem對照 (預設1rem = 16px)

60px = 3.75rem
48px = 3rem
40px = 2.5rem
36px = 1.75rem
32px = 2rem
28px = 1.75rem
24px = 1.5rem
20px = 1.25rem
18px = 1.125rem
12px = 0.75rem

*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@media (max-width: 992px) {
  html {
    font-size: 95%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 75%;
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5rem);
            transform: translateX(-5rem);
  }
  80% {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5rem);
            transform: translateX(-5rem);
  }
  80% {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
  }
  80% {
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
  }
  80% {
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

body {
  font-family: 'WenQuanYi Zen Hei', '文泉驛正黑', 'Apple LiGothic Medium', '蘋果儷中黑', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
}

.heading-primary {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#539f62), to(#526356));
  background-image: linear-gradient(to right bottom, #539f62, #526356);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.heading-primary--main {
  display: block;
  font-size: 3.75rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.heading-primary--sub {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
}

.heading-secondary {
  font-size: 3rem;
  font-weight: 700;
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.heading-secondary--green {
  color: #526356;
}

.heading-tertiary {
  font-size: 2.25rem;
  font-weight: 700;
  display: inline-block;
}

.heading-tertiary--green {
  color: #526356;
}

.paragraph:not(:last-child) {
  margin-bottom: .75rem;
}

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

.u-margin-bottom-small {
  margin-bottom: 1rem;
}

.u-margin-bottom-medium {
  margin-bottom: 2rem;
}

.u-margin-bottom-big {
  margin-bottom: 4rem;
}

.u-font-bold {
  font-weight: 700;
}

.bg-primary-light {
  background-color: rgba(83, 159, 98, 0.1);
}

.btn:link, .btn:visited {
  font-weight: 700;
  text-decoration: none;
  padding: .75rem 1.5rem;
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: relative;
  font-size: 1rem;
}

.btn:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn:active {
  -webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn--fixed-width {
  max-width: 12rem;
  width: 48%;
}

.btn--secondary {
  background-color: #fbc500;
  color: #526356;
}

.btn--secondary:hover {
  background-color: #ffd22f;
  color: #526356;
}

.btn--white-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn--white-outline:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #526356;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.25rem;
  color: #539f62;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #539f62;
  padding: 3px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-text:hover {
  background-color: #539f62;
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-text:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.qacard-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2rem;
}

@media (max-width: 768px) {
  .qacard-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.qacard {
  max-width: 360px;
}

.qacard__dialog {
  color: #fff;
  background-color: #539f62;
  border-radius: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem;
  margin: 0 1rem -3rem;
  position: relative;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 2;
}

.qacard__dialog::after {
  content: "";
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 99%;
  left: 25%;
  background-color: #539f62;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.qacard:hover .qacard__dialog {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0.5rem 0 rgba(251, 197, 0, 0.7);
          box-shadow: 0 0.5rem 0 rgba(251, 197, 0, 0.7);
}

.qacard:hover .qacard__main {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.qacard__main {
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 1.25rem;
  text-align: center;
  padding: 1.5rem;
  padding-top: 5rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  z-index: 1;
}

.qacard__main__title {
  color: #539f62;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.qacard__main__text {
  font-size: 1.125rem;
}

.qacard__img {
  background-color: rgba(83, 159, 98, 0.15);
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
  width: 60%;
}

.quote {
  font-size: 1.125rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1.25rem;
  border: 1px solid #777;
  padding: 2.5rem;
  margin: 1.5rem auto;
  position: relative;
}

@media (max-width: 576px) {
  .quote {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.quote__img {
  max-width: 100px;
  margin: 1.5rem 0;
  background-color: rgba(83, 159, 98, 0.15);
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
}

.quote__content {
  margin: 0 1.5rem;
}

.quote::before, .quote::after {
  content: "";
  position: absolute;
  background-image: url(../images/homepage/format_quote_black_24dp.svg);
  background-color: #fff;
  background-size: 30px 30px;
  height: 30px;
  width: 30px;
}

.quote::before {
  top: -15px;
  left: 2rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.quote::after {
  bottom: -15px;
  right: 2rem;
}

.separate-line {
  display: block;
  position: relative;
}

.separate-line::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fbc500;
  border-radius: 2rem;
}

.header {
  padding: 0;
  background-color: #f7f7f7;
}

.header__title-box {
  display: block;
  margin: auto;
  text-align: center;
  padding: 6rem .5rem 5rem .5rem;
}

.header__intro {
  color: #fff;
  background-image: url(../images/homepage/header-bg.svg);
  background-size: cover;
  background-position: top;
  position: relative;
  padding: 6rem 0 7rem 0;
}

.header__intro-box {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__intro-box__text {
  min-width: 24rem;
}

.header__intro-box .paragraph {
  font-size: 1.125rem;
}

.header__intro-box__hero-img {
  width: 100%;
  margin: auto 0;
}

@media (max-width: 576px) {
  .header__intro-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__intro-box__hero {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__intro-box__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-width: unset;
  }
}

.home-video {
  max-width: 880px;
  margin: 8rem auto 0;
  border-radius: 1.25rem;
}

.home-qa {
  padding: 8rem 0;
}

.home-qa > h2 {
  margin-bottom: 5rem;
}

.home-func {
  padding: 8rem 0;
  overflow-x: hidden;
}

.home-func > div:not(:last-child) {
  margin-bottom: 4rem;
}

.home-func__text {
  padding: 0 3rem;
  max-width: 33rem;
}

@media (max-width: 1200px) {
  .home-func__text {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  .home-func__text {
    margin-top: 1rem;
    padding: 0 1.5rem;
  }
}

.home-func__img {
  width: 100%;
}

.home-newbie {
  padding: 8rem 0;
}

.home-newbie > h3 {
  margin-bottom: 4rem;
}

.home-consult {
  padding: 0 0 8rem;
}

.home-consult > h3 {
  margin-bottom: 4rem;
}

.home-consult__img {
  border-radius: 1.25rem;
  width: 100%;
  max-width: 800px;
}

.home-testimonial {
  padding: 8rem 0;
}

.home-testimonial > h3 {
  margin-bottom: 4rem;
}

.home-testimonial .carousel-indicators {
  bottom: -30px;
}

.home-testimonial .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #AAA;
}

.home-belief {
  text-align: center;
  margin: 0 auto 8rem;
  max-width: 800px;
  padding: 3rem;
  background-color: #539f62;
  color: #fff;
  border-radius: 1.25rem;
}

.home-belief h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.home-belief p {
  font-size: 1.125rem;
  margin-bottom: .5rem;
}

.home-belief p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .home-belief p {
    text-align: left;
  }
}

.ins {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[3];
      grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .ins {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[4];
        grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .ins {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[6];
        grid-template-rows: repeat(6, 1fr);
  }
}

.ins__link {
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  border-radius: 1.25rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  border: 2px solid #fff;
  height: 100%;
}

.ins__link:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.ins__link:active {
  -webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ins__link h6 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: .2rem;
  margin-bottom: .5rem;
}

.ins__link--cancer {
  background-color: #885BB3;
}

.ins__link--medical {
  background-color: #169BD4;
}

.ins__link--disability {
  background-color: #FB5B8F;
}

.ins__link--accident {
  background-color: #E6992B;
}

.ins__link--life {
  background-color: #DE4949;
}

.ins__link--other {
  background-color: #5E5E5E;
}

.ins__link--easy {
  background-color: #539f62;
  grid-column: span 2;
}

.ins__link img {
  max-width: 100%;
}
/*# sourceMappingURL=main.css.map */