.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-33183687-c67d-4b2a-8e8b-9f4ea6c3b1cc {
  min-height: 50px;
}








#s-33183687-c67d-4b2a-8e8b-9f4ea6c3b1cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-33183687-c67d-4b2a-8e8b-9f4ea6c3b1cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2463ca7-23b2-4f4f-b6b9-d428c770ca5a {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 20px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
background-position: center center;
}
@media (min-width: 1200px){#s-d2463ca7-23b2-4f4f-b6b9-d428c770ca5a {
  
}
}







#s-d2463ca7-23b2-4f4f-b6b9-d428c770ca5a > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-d2463ca7-23b2-4f4f-b6b9-d428c770ca5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-4d24a269-dbdb-4af2-903a-d7ad5e78cc85 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-4d24a269-dbdb-4af2-903a-d7ad5e78cc85 {
  
}
}






  #s-4d24a269-dbdb-4af2-903a-d7ad5e78cc85 img.shogun-image {
    

    
    
    
  }


#s-4d24a269-dbdb-4af2-903a-d7ad5e78cc85 .shogun-image-content {
  
    align-items: center;
  
}

#s-55238939-ce0d-4416-8464-12e71a8e29f9 {
  min-height: 50px;
background-color: rgba(191, 234, 176, 1);
}








#s-55238939-ce0d-4416-8464-12e71a8e29f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55238939-ce0d-4416-8464-12e71a8e29f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e89bfe69-795b-442d-90ca-3abcfbd7ea1b {
  min-height: 50px;
}








#s-e89bfe69-795b-442d-90ca-3abcfbd7ea1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e89bfe69-795b-442d-90ca-3abcfbd7ea1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7a8f8b8-9e0f-4bb4-b843-393100efee28 {
  min-height: 50px;
}








#s-a7a8f8b8-9e0f-4bb4-b843-393100efee28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7a8f8b8-9e0f-4bb4-b843-393100efee28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc5cbad7-0576-4a59-9b94-43b86a381db2 {
  text-align: center;
}







  #s-bc5cbad7-0576-4a59-9b94-43b86a381db2 img.shogun-image {
    

    
    
    
  }


#s-bc5cbad7-0576-4a59-9b94-43b86a381db2 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-863dc1fd-95e1-4d95-b12a-f9d056de3cd9 {
  text-align: center;
}
@media (max-width: 767px){#s-863dc1fd-95e1-4d95-b12a-f9d056de3cd9 {
  margin-bottom: -10px;
}
}
#s-863dc1fd-95e1-4d95-b12a-f9d056de3cd9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 50px;
  line-height: 1.2em;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-863dc1fd-95e1-4d95-b12a-f9d056de3cd9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.2em;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-863dc1fd-95e1-4d95-b12a-f9d056de3cd9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.3em;
  letter-spacing: 2px;
  
}


}
.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-5e89edbe-a877-48ec-b193-cbd0466cd66f {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-5e89edbe-a877-48ec-b193-cbd0466cd66f {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5e89edbe-a877-48ec-b193-cbd0466cd66f {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5e89edbe-a877-48ec-b193-cbd0466cd66f {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-5e89edbe-a877-48ec-b193-cbd0466cd66f {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-87c8df59-c53c-4e3e-b5f2-53cd1659d20e {
  text-align: center;
}







  #s-87c8df59-c53c-4e3e-b5f2-53cd1659d20e img.shogun-image {
    

    
    
    
  }


#s-87c8df59-c53c-4e3e-b5f2-53cd1659d20e .shogun-image-content {
  
    align-items: center;
  
}

#s-bcb63c63-7b5a-4447-8330-82372684f661 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-bcb63c63-7b5a-4447-8330-82372684f661 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcb63c63-7b5a-4447-8330-82372684f661.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6136ee7-85a3-4987-a5f4-a8862cb32cb5 {
  text-align: center;
}







  #s-b6136ee7-85a3-4987-a5f4-a8862cb32cb5 img.shogun-image {
    

    
    
    
  }


#s-b6136ee7-85a3-4987-a5f4-a8862cb32cb5 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7b839c4-7f75-4a6d-817e-be24e8bbdbaa {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(191, 234, 176, 1);
}








#s-e7b839c4-7f75-4a6d-817e-be24e8bbdbaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7b839c4-7f75-4a6d-817e-be24e8bbdbaa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64a7ddca-2fcc-4740-9ee4-b139c5ba48c7 {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-64a7ddca-2fcc-4740-9ee4-b139c5ba48c7 {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-64a7ddca-2fcc-4740-9ee4-b139c5ba48c7 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


@media (max-width: 767px){#s-64a7ddca-2fcc-4740-9ee4-b139c5ba48c7 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 img.shogun-image {
    

    
    
    
  }


#s-0fa95306-1714-436c-b5fe-cb37b9af6bc8 .shogun-image-content {
  
    align-items: center;
  
}

#s-9c9ff328-48dc-4287-aa4f-a41d98ce29c6 {
  text-align: center;
}







  #s-9c9ff328-48dc-4287-aa4f-a41d98ce29c6 img.shogun-image {
    

    
    
    
  }


#s-9c9ff328-48dc-4287-aa4f-a41d98ce29c6 .shogun-image-content {
  
    align-items: center;
  
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-d3fec5f4-ac21-4e99-b793-20189149e0b5 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d3fec5f4-ac21-4e99-b793-20189149e0b5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-20dda071-c03e-49af-b6ec-1a9ff4e142f4 {
  text-align: center;
}







  #s-20dda071-c03e-49af-b6ec-1a9ff4e142f4 img.shogun-image {
    

    
    
    
  }


#s-20dda071-c03e-49af-b6ec-1a9ff4e142f4 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-98862c36-a367-49ad-94b7-2003b2b580a4 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-98862c36-a367-49ad-94b7-2003b2b580a4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-98862c36-a367-49ad-94b7-2003b2b580a4 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-98862c36-a367-49ad-94b7-2003b2b580a4 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-98862c36-a367-49ad-94b7-2003b2b580a4 td.shogun-table-column, #s-98862c36-a367-49ad-94b7-2003b2b580a4 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-075e7dce-2d9b-45fa-a682-f0e0f6236f36 {
  text-align: center;
}







  #s-075e7dce-2d9b-45fa-a682-f0e0f6236f36 img.shogun-image {
    

    
    
    
  }


#s-075e7dce-2d9b-45fa-a682-f0e0f6236f36 .shogun-image-content {
  
    align-items: center;
  
}

#s-788a5908-e9ae-4031-8084-fa2beeb6ab38 {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(125, 188, 118, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(125, 188, 118, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 0.5em;
  letter-spacing: 1px;
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1em;
  letter-spacing: 1px;
  
}


}@media (max-width: 767px){#s-af61a1c7-c21e-4eab-a53b-86ee2d49b679 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 0.5em;
  letter-spacing: 1px;
  
}


}
#s-94439a48-962e-4886-b0be-59d51c89776e {
  margin-bottom: -13px;
text-align: center;
}

#s-94439a48-962e-4886-b0be-59d51c89776e .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 35px;
  line-height: 0.8em;
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-94439a48-962e-4886-b0be-59d51c89776e .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-94439a48-962e-4886-b0be-59d51c89776e .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.3em;
  
  
}


}
#s-04812ea5-c664-4ece-8ff3-4026f20e3ba7 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-04812ea5-c664-4ece-8ff3-4026f20e3ba7 {
  margin-top: 0px;
}
}






  #s-04812ea5-c664-4ece-8ff3-4026f20e3ba7 img.shogun-image {
    

    
    
    
  }


#s-04812ea5-c664-4ece-8ff3-4026f20e3ba7 .shogun-image-content {
  
    align-items: center;
  
}

#s-56e8ec7d-7f83-4002-84e8-df10d54d2a67 {
  margin-bottom: 1%;
min-height: 50px;
}








#s-56e8ec7d-7f83-4002-84e8-df10d54d2a67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56e8ec7d-7f83-4002-84e8-df10d54d2a67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64383d8f-226a-45bb-906e-6d15b9d13210 {
  text-align: center;
}







  #s-64383d8f-226a-45bb-906e-6d15b9d13210 img.shogun-image {
    

    
    
    
  }


#s-64383d8f-226a-45bb-906e-6d15b9d13210 .shogun-image-content {
  
    align-items: center;
  
}

#s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-40c69ef7-3330-4fe2-b8f2-959d1e8e6882"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b31e6833-2179-42b0-8096-c3b89f6cbd8e {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b31e6833-2179-42b0-8096-c3b89f6cbd8e {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-b31e6833-2179-42b0-8096-c3b89f6cbd8e {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-b31e6833-2179-42b0-8096-c3b89f6cbd8e img.shogun-image {
    

    
    
    
  }


#s-b31e6833-2179-42b0-8096-c3b89f6cbd8e .shogun-image-content {
  
    align-items: center;
  
}

#s-7304632e-d965-4519-8647-8ad2df167a4d {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-7304632e-d965-4519-8647-8ad2df167a4d {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7304632e-d965-4519-8647-8ad2df167a4d {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7304632e-d965-4519-8647-8ad2df167a4d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-7304632e-d965-4519-8647-8ad2df167a4d {
  margin-top: 50px;
text-align: center;
}
}
#s-7304632e-d965-4519-8647-8ad2df167a4d .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-7304632e-d965-4519-8647-8ad2df167a4d .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-7304632e-d965-4519-8647-8ad2df167a4d .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-7304632e-d965-4519-8647-8ad2df167a4d .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-ebbdae2f-d20a-48a5-b02e-739c27b802b4 {
  text-align: left;
}
@media (max-width: 767px){#s-ebbdae2f-d20a-48a5-b02e-739c27b802b4 {
  margin-bottom: -30px;
}
}
#s-ebbdae2f-d20a-48a5-b02e-739c27b802b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ebbdae2f-d20a-48a5-b02e-739c27b802b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-ebbdae2f-d20a-48a5-b02e-739c27b802b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a {
  display: none;
}
#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a, #wrap-s-771a7af8-6c4f-494e-9e3e-2cd25da7030a { display: none !important; }}@media (max-width: 767px){#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a {
  display: none;
}
#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a, #wrap-s-771a7af8-6c4f-494e-9e3e-2cd25da7030a { display: none !important; }}






  #s-771a7af8-6c4f-494e-9e3e-2cd25da7030a img.shogun-image {
    

    
    
    
  }


#s-771a7af8-6c4f-494e-9e3e-2cd25da7030a .shogun-image-content {
  
    align-items: center;
  
}

#s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-9ef54cac-bade-41b2-ba26-2a9ab3e8cfd8"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-d25741f0-1fcf-4cc6-95cc-0323ac28839b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-f4a384fa-8d53-4331-b23f-6183940684d5 {
  text-align: left;
}
@media (max-width: 767px){#s-f4a384fa-8d53-4331-b23f-6183940684d5 {
  margin-bottom: -30px;
}
}
#s-f4a384fa-8d53-4331-b23f-6183940684d5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f4a384fa-8d53-4331-b23f-6183940684d5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-f4a384fa-8d53-4331-b23f-6183940684d5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-5cad3acb-74e0-44dd-8327-e679aded3185 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5cad3acb-74e0-44dd-8327-e679aded3185 {
  display: none;
}
#s-5cad3acb-74e0-44dd-8327-e679aded3185, #wrap-s-5cad3acb-74e0-44dd-8327-e679aded3185 { display: none !important; }}@media (max-width: 767px){#s-5cad3acb-74e0-44dd-8327-e679aded3185 {
  display: none;
}
#s-5cad3acb-74e0-44dd-8327-e679aded3185, #wrap-s-5cad3acb-74e0-44dd-8327-e679aded3185 { display: none !important; }}






  #s-5cad3acb-74e0-44dd-8327-e679aded3185 img.shogun-image {
    

    
    
    
  }


#s-5cad3acb-74e0-44dd-8327-e679aded3185 .shogun-image-content {
  
    align-items: center;
  
}

#s-9058bf8a-7e47-42dd-9cc7-b3d6fea578cd {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9058bf8a-7e47-42dd-9cc7-b3d6fea578cd {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-9058bf8a-7e47-42dd-9cc7-b3d6fea578cd {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-9058bf8a-7e47-42dd-9cc7-b3d6fea578cd img.shogun-image {
    

    
    
    
  }


#s-9058bf8a-7e47-42dd-9cc7-b3d6fea578cd .shogun-image-content {
  
    align-items: center;
  
}

#s-f241076f-9e96-4548-9fbf-85058ca7e3be {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-f241076f-9e96-4548-9fbf-85058ca7e3be {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-f241076f-9e96-4548-9fbf-85058ca7e3be"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f241076f-9e96-4548-9fbf-85058ca7e3be"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f241076f-9e96-4548-9fbf-85058ca7e3be"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f241076f-9e96-4548-9fbf-85058ca7e3be"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 1200px){#s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe img.shogun-image {
    

    
    
    
  }


#s-c0fdbfb0-2fc3-43dd-a460-271b7f3061fe .shogun-image-content {
  
    align-items: center;
  
}

#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b {
  margin-top: 20px;
text-align: center;
}
}
#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-4d3e8d8a-e3c0-45ec-a8d0-3fb22111d62b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-b7a7c805-cdfc-4ee9-b381-8fde3ea14258 {
  text-align: left;
}
@media (max-width: 767px){#s-b7a7c805-cdfc-4ee9-b381-8fde3ea14258 {
  margin-bottom: -30px;
}
}
#s-b7a7c805-cdfc-4ee9-b381-8fde3ea14258 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-b7a7c805-cdfc-4ee9-b381-8fde3ea14258 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b7a7c805-cdfc-4ee9-b381-8fde3ea14258 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f {
  display: none;
}
#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f, #wrap-s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f { display: none !important; }}@media (max-width: 767px){#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f {
  display: none;
}
#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f, #wrap-s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f { display: none !important; }}






  #s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f img.shogun-image {
    

    
    
    
  }


#s-bf299194-b7f9-4dd3-aadb-3c6ff486c02f .shogun-image-content {
  
    align-items: center;
  
}

#s-db88fa62-0c67-48ff-934b-45f45f21cc5b {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-db88fa62-0c67-48ff-934b-45f45f21cc5b {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-db88fa62-0c67-48ff-934b-45f45f21cc5b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db88fa62-0c67-48ff-934b-45f45f21cc5b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-db88fa62-0c67-48ff-934b-45f45f21cc5b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-db88fa62-0c67-48ff-934b-45f45f21cc5b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-db88fa62-0c67-48ff-934b-45f45f21cc5b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-26cd9682-25e6-4d77-9551-542dd280b599 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-26cd9682-25e6-4d77-9551-542dd280b599 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-26cd9682-25e6-4d77-9551-542dd280b599 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-26cd9682-25e6-4d77-9551-542dd280b599 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-26cd9682-25e6-4d77-9551-542dd280b599 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-26cd9682-25e6-4d77-9551-542dd280b599 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-26cd9682-25e6-4d77-9551-542dd280b599 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-26cd9682-25e6-4d77-9551-542dd280b599 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-26cd9682-25e6-4d77-9551-542dd280b599 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-f8d7bef7-a627-453d-a88c-9bd31a38d610 {
  text-align: left;
}
@media (max-width: 767px){#s-f8d7bef7-a627-453d-a88c-9bd31a38d610 {
  margin-bottom: -30px;
}
}
#s-f8d7bef7-a627-453d-a88c-9bd31a38d610 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f8d7bef7-a627-453d-a88c-9bd31a38d610 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-f8d7bef7-a627-453d-a88c-9bd31a38d610 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 {
  display: none;
}
#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35, #wrap-s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 { display: none !important; }}@media (max-width: 767px){#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 {
  display: none;
}
#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35, #wrap-s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 { display: none !important; }}






  #s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 img.shogun-image {
    

    
    
    
  }


#s-546ab3b6-6906-4a4e-ac49-2cfd27294a35 .shogun-image-content {
  
    align-items: center;
  
}

#s-a591b220-5bbb-4a6e-9541-c21c0f8c8cc2 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a591b220-5bbb-4a6e-9541-c21c0f8c8cc2 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-a591b220-5bbb-4a6e-9541-c21c0f8c8cc2 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-a591b220-5bbb-4a6e-9541-c21c0f8c8cc2 img.shogun-image {
    

    
    
    
  }


#s-a591b220-5bbb-4a6e-9541-c21c0f8c8cc2 .shogun-image-content {
  
    align-items: center;
  
}

#s-f462edd5-11da-4142-a5e7-2c2c1823c743 {
  min-height: 50px;
}








#s-f462edd5-11da-4142-a5e7-2c2c1823c743 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f462edd5-11da-4142-a5e7-2c2c1823c743.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ce96b0b-4ed4-4740-8a00-41a9d903290d {
  text-align: left;
}

#s-4ce96b0b-4ed4-4740-8a00-41a9d903290d .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-4ce96b0b-4ed4-4740-8a00-41a9d903290d .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-1eb3f40b-876b-47a5-a9f0-a5ba0e1b30fb {
  text-align: left;
}

#s-1eb3f40b-876b-47a5-a9f0-a5ba0e1b30fb .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 19px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-1eb3f40b-876b-47a5-a9f0-a5ba0e1b30fb .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-7bd75376-3568-4a73-b34b-1d4decbd9e31 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7bd75376-3568-4a73-b34b-1d4decbd9e31 {
  padding-top: 10px;
}
}






  #s-7bd75376-3568-4a73-b34b-1d4decbd9e31 img.shogun-image {
    

    
    
    
  }


#s-7bd75376-3568-4a73-b34b-1d4decbd9e31 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d571beb9-92a6-488e-94d7-7e71df668206"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-85916f67-b869-43d4-8e86-20d81f913167 {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-85916f67-b869-43d4-8e86-20d81f913167 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-85916f67-b869-43d4-8e86-20d81f913167 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-85916f67-b869-43d4-8e86-20d81f913167 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-85916f67-b869-43d4-8e86-20d81f913167 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-85916f67-b869-43d4-8e86-20d81f913167 td.shogun-table-column, #s-85916f67-b869-43d4-8e86-20d81f913167 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-bfd9f57b-89fc-4a7c-842b-0146b3419bc9 {
  text-align: center;
}







  #s-bfd9f57b-89fc-4a7c-842b-0146b3419bc9 img.shogun-image {
    

    
    
    
  }


#s-bfd9f57b-89fc-4a7c-842b-0146b3419bc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-d3c0614f-412e-45f8-95a4-feece6f790b2 {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-d3c0614f-412e-45f8-95a4-feece6f790b2 {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d3c0614f-412e-45f8-95a4-feece6f790b2 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d3c0614f-412e-45f8-95a4-feece6f790b2 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-d3c0614f-412e-45f8-95a4-feece6f790b2 {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-d3c0614f-412e-45f8-95a4-feece6f790b2 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1.3em;
  
  text-align: left;
}


@media (max-width: 767px){#s-d3c0614f-412e-45f8-95a4-feece6f790b2 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-a2ddb900-8966-40db-99e2-d416da9860f1 {
  text-align: center;
}







  #s-a2ddb900-8966-40db-99e2-d416da9860f1 img.shogun-image {
    

    
    
    
  }


#s-a2ddb900-8966-40db-99e2-d416da9860f1 .shogun-image-content {
  
    align-items: center;
  
}

#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (max-width: 767px){#s-1fcda5b1-c226-448b-a08e-1fa7637eb956 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-265464aa-b6f3-4dd2-abc7-46eaffae2093 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-265464aa-b6f3-4dd2-abc7-46eaffae2093 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-265464aa-b6f3-4dd2-abc7-46eaffae2093 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-265464aa-b6f3-4dd2-abc7-46eaffae2093 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-265464aa-b6f3-4dd2-abc7-46eaffae2093 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  
}


}
#s-2d6c1f4e-985c-456d-a542-132d2ee8de70 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-2d6c1f4e-985c-456d-a542-132d2ee8de70 img.shogun-image {
    

    
    
    
  }


#s-2d6c1f4e-985c-456d-a542-132d2ee8de70 .shogun-image-content {
  
    align-items: center;
  
}

#s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-e60d5eb6-1e6d-41fa-9dd1-bcffa611c591"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 {
  border-style: solid;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 img.shogun-image {
    

    
    
    
  }


#s-571dd3a2-1fff-4c4f-b43b-6a462ff6e043 .shogun-image-content {
  
    align-items: center;
  
}

#s-55742d87-930f-4bcb-aa2b-85d895a24aab {
  margin-top: 10px;
margin-left: 28px;
margin-bottom: 10px;
margin-right: 28px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-55742d87-930f-4bcb-aa2b-85d895a24aab {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-55742d87-930f-4bcb-aa2b-85d895a24aab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-55742d87-930f-4bcb-aa2b-85d895a24aab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-fdb18839-4634-4405-bc5c-0d15fd1aa052 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-fdb18839-4634-4405-bc5c-0d15fd1aa052 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-2e6d3e9c-dd8a-49fc-9d79-42e2aa72dcd8"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-46db6d1f-a40a-4845-a3a1-4c41cc026092 {
  border-style: solid;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-46db6d1f-a40a-4845-a3a1-4c41cc026092 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-46db6d1f-a40a-4845-a3a1-4c41cc026092 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-46db6d1f-a40a-4845-a3a1-4c41cc026092 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-46db6d1f-a40a-4845-a3a1-4c41cc026092 img.shogun-image {
    

    
    
    
  }


#s-46db6d1f-a40a-4845-a3a1-4c41cc026092 .shogun-image-content {
  
    align-items: center;
  
}

#s-01433d17-45ad-47fe-a27a-0aab6412389c {
  margin-top: 10px;
margin-left: 28px;
margin-bottom: 10px;
margin-right: 28px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-01433d17-45ad-47fe-a27a-0aab6412389c {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-01433d17-45ad-47fe-a27a-0aab6412389c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-01433d17-45ad-47fe-a27a-0aab6412389c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-331e5a24-0292-4bce-891b-329bce412689 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-331e5a24-0292-4bce-891b-329bce412689 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-c7897e17-a71f-49b7-bd1f-fb560f45173d {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-c7897e17-a71f-49b7-bd1f-fb560f45173d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7897e17-a71f-49b7-bd1f-fb560f45173d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c15da927-735f-4bea-9f2f-1d5b541ca80f {
  text-align: left;
}

#s-c15da927-735f-4bea-9f2f-1d5b541ca80f .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-c15da927-735f-4bea-9f2f-1d5b541ca80f .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-2e9adfca-761f-4b09-a176-90f57f961a25 {
  text-align: left;
}

#s-2e9adfca-761f-4b09-a176-90f57f961a25 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-2e9adfca-761f-4b09-a176-90f57f961a25 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-b828a500-f8db-4335-9b39-58f867e1c0af {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-b828a500-f8db-4335-9b39-58f867e1c0af img.shogun-image {
    

    
    
    
  }


#s-b828a500-f8db-4335-9b39-58f867e1c0af .shogun-image-content {
  
    align-items: center;
  
}

#s-31988a62-6d64-4e27-a98f-048ba7f6f5cf {
  text-align: center;
}







  #s-31988a62-6d64-4e27-a98f-048ba7f6f5cf img.shogun-image {
    

    
    
    
  }


#s-31988a62-6d64-4e27-a98f-048ba7f6f5cf .shogun-image-content {
  
    align-items: center;
  
}

#s-09922e44-2552-46b4-90b0-83e53c6eea4b {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-09922e44-2552-46b4-90b0-83e53c6eea4b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-09922e44-2552-46b4-90b0-83e53c6eea4b {
  
}
}@media (max-width: 767px){#s-09922e44-2552-46b4-90b0-83e53c6eea4b {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-09922e44-2552-46b4-90b0-83e53c6eea4b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-09922e44-2552-46b4-90b0-83e53c6eea4b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-09922e44-2552-46b4-90b0-83e53c6eea4b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-09922e44-2552-46b4-90b0-83e53c6eea4b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-56d2d21c-ed32-428e-8307-4e516b85e0da {
  text-align: center;
}
@media (max-width: 767px){#s-56d2d21c-ed32-428e-8307-4e516b85e0da {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-56d2d21c-ed32-428e-8307-4e516b85e0da .shogun-image-content {
  
    align-items: center;
  
}

#s-8d530b39-11dc-47d7-beae-3c7186031df3 {
  text-align: center;
}
@media (max-width: 767px){#s-8d530b39-11dc-47d7-beae-3c7186031df3 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-8d530b39-11dc-47d7-beae-3c7186031df3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a55ec7b7-92dd-48fb-a73b-590a1dc8cc0d {
  margin-top: 14px;
text-align: center;
}







  #s-a55ec7b7-92dd-48fb-a73b-590a1dc8cc0d img.shogun-image {
    

    
    
    
  }


#s-a55ec7b7-92dd-48fb-a73b-590a1dc8cc0d .shogun-image-content {
  
    align-items: center;
  
}

#s-90c04868-61a3-4d7f-990e-2b417e7aa82a {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-90c04868-61a3-4d7f-990e-2b417e7aa82a {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-90c04868-61a3-4d7f-990e-2b417e7aa82a .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-90c04868-61a3-4d7f-990e-2b417e7aa82a .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-2dd07567-45c8-40fb-bb81-f4b8468a606c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-2dd07567-45c8-40fb-bb81-f4b8468a606c {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-2dd07567-45c8-40fb-bb81-f4b8468a606c .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-2dd07567-45c8-40fb-bb81-f4b8468a606c .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-8a5b5d20-4050-4a72-97b6-0e0adbc92d2b {
  min-height: 50px;
}








#s-8a5b5d20-4050-4a72-97b6-0e0adbc92d2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a5b5d20-4050-4a72-97b6-0e0adbc92d2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-739c4417-2947-435f-894a-d9797dfc08c8 {
  text-align: center;
}







  #s-739c4417-2947-435f-894a-d9797dfc08c8 img.shogun-image {
    

    
    
    
  }


#s-739c4417-2947-435f-894a-d9797dfc08c8 .shogun-image-content {
  
    align-items: center;
  
}

#s-245bb005-90bb-41af-ac72-15d6158c7e08 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-245bb005-90bb-41af-ac72-15d6158c7e08 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-245bb005-90bb-41af-ac72-15d6158c7e08.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26a146f0-ff1a-4aa4-af49-b18278394aac {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-26a146f0-ff1a-4aa4-af49-b18278394aac .shogun-heading-component h6 {
  color: rgba(134, 85, 65, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-26a146f0-ff1a-4aa4-af49-b18278394aac .shogun-heading-component h6 {
  color: rgba(134, 85, 65, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-ba8fb2be-5fac-4bc9-bb49-165b7fb95a42 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-ba8fb2be-5fac-4bc9-bb49-165b7fb95a42 img.shogun-image {
    

    
    
    
  }


#s-ba8fb2be-5fac-4bc9-bb49-165b7fb95a42 .shogun-image-content {
  
    align-items: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
