#s-ab54e287-45d9-4e10-aebe-7de556bbc20b {
  text-align: right;
}

.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-5b79f78b-2d8e-42f6-a74f-7445970d5095 {
  min-height: 50px;
}








#s-5b79f78b-2d8e-42f6-a74f-7445970d5095 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b79f78b-2d8e-42f6-a74f-7445970d5095.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a8f821c-8f4d-47ef-b54f-d3c39eb0b2c7 {
  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-2a8f821c-8f4d-47ef-b54f-d3c39eb0b2c7 {
  
}
}







#s-2a8f821c-8f4d-47ef-b54f-d3c39eb0b2c7 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-2a8f821c-8f4d-47ef-b54f-d3c39eb0b2c7.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-87f46b58-33dc-46cf-a7c0-eab75bc52ab6 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-87f46b58-33dc-46cf-a7c0-eab75bc52ab6 {
  
}
}






  #s-87f46b58-33dc-46cf-a7c0-eab75bc52ab6 img.shogun-image {
    

    
    
    
  }


#s-87f46b58-33dc-46cf-a7c0-eab75bc52ab6 .shogun-image-content {
  
    align-items: center;
  
}

#s-7cd0822c-d429-411c-9b2f-1f7c009a1d21 {
  min-height: 50px;
background-color: rgba(178, 236, 239, 1);
}








#s-7cd0822c-d429-411c-9b2f-1f7c009a1d21 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cd0822c-d429-411c-9b2f-1f7c009a1d21.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8610037-4a1e-4957-8a0d-a50b1f0ddaa5 {
  min-height: 50px;
}








#s-b8610037-4a1e-4957-8a0d-a50b1f0ddaa5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8610037-4a1e-4957-8a0d-a50b1f0ddaa5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f917eacb-2a16-4653-a6c9-425a418696b5 {
  min-height: 50px;
}








#s-f917eacb-2a16-4653-a6c9-425a418696b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f917eacb-2a16-4653-a6c9-425a418696b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-825b1260-a361-4a7b-a736-423c525ffe8f {
  text-align: center;
}







  #s-825b1260-a361-4a7b-a736-423c525ffe8f img.shogun-image {
    

    
    
    
  }


#s-825b1260-a361-4a7b-a736-423c525ffe8f .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-428d1317-d769-443d-960d-264cbd4cfe9b {
  text-align: center;
}
@media (max-width: 767px){#s-428d1317-d769-443d-960d-264cbd4cfe9b {
  margin-bottom: -10px;
}
}
#s-428d1317-d769-443d-960d-264cbd4cfe9b .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-428d1317-d769-443d-960d-264cbd4cfe9b .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-428d1317-d769-443d-960d-264cbd4cfe9b .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-9a1d71ac-da03-4b56-b67f-17790c9fd5f3 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-9a1d71ac-da03-4b56-b67f-17790c9fd5f3 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9a1d71ac-da03-4b56-b67f-17790c9fd5f3 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9a1d71ac-da03-4b56-b67f-17790c9fd5f3 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-9a1d71ac-da03-4b56-b67f-17790c9fd5f3 {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-93ef4f31-5015-4f3d-a226-fe107a41dfdf {
  text-align: center;
}







  #s-93ef4f31-5015-4f3d-a226-fe107a41dfdf img.shogun-image {
    

    
    
    
  }


#s-93ef4f31-5015-4f3d-a226-fe107a41dfdf .shogun-image-content {
  
    align-items: center;
  
}

#s-7adffb96-177c-4655-824d-0357d1d88411 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-7adffb96-177c-4655-824d-0357d1d88411 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7adffb96-177c-4655-824d-0357d1d88411.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4d6dbf7-55b3-4a9d-ac47-503a5e80b7b2 {
  text-align: center;
}







  #s-c4d6dbf7-55b3-4a9d-ac47-503a5e80b7b2 img.shogun-image {
    

    
    
    
  }


#s-c4d6dbf7-55b3-4a9d-ac47-503a5e80b7b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ba1927a-8fc1-4383-9afc-adbb084642d3 {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(178, 236, 238, 1);
}








#s-4ba1927a-8fc1-4383-9afc-adbb084642d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ba1927a-8fc1-4383-9afc-adbb084642d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc634d3c-99af-44ef-b884-cff1877a4972 {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-fc634d3c-99af-44ef-b884-cff1877a4972 {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-fc634d3c-99af-44ef-b884-cff1877a4972 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-fc634d3c-99af-44ef-b884-cff1877a4972 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-fc634d3c-99af-44ef-b884-cff1877a4972 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-c36c619a-3f11-4d73-b767-07160ebf469c {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c36c619a-3f11-4d73-b767-07160ebf469c {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c36c619a-3f11-4d73-b767-07160ebf469c {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-c36c619a-3f11-4d73-b767-07160ebf469c {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-c36c619a-3f11-4d73-b767-07160ebf469c img.shogun-image {
    

    
    
    
  }


#s-c36c619a-3f11-4d73-b767-07160ebf469c .shogun-image-content {
  
    align-items: center;
  
}

#s-44db4a5e-1bf0-4bf0-86b0-e1cc94318cf3 {
  text-align: center;
}







  #s-44db4a5e-1bf0-4bf0-86b0-e1cc94318cf3 img.shogun-image {
    

    
    
    
  }


#s-44db4a5e-1bf0-4bf0-86b0-e1cc94318cf3 .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-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4e1e300e-c8d2-4d4c-91f8-25e35f94a28d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-d2ff0ef2-37ed-4252-8fcd-cbe3085a18f0 {
  text-align: center;
}







  #s-d2ff0ef2-37ed-4252-8fcd-cbe3085a18f0 img.shogun-image {
    

    
    
    
  }


#s-d2ff0ef2-37ed-4252-8fcd-cbe3085a18f0 .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-e863ca57-baf2-4b47-b1ee-a601d7ba1213 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-e863ca57-baf2-4b47-b1ee-a601d7ba1213 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e863ca57-baf2-4b47-b1ee-a601d7ba1213 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-e863ca57-baf2-4b47-b1ee-a601d7ba1213 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-e863ca57-baf2-4b47-b1ee-a601d7ba1213 td.shogun-table-column, #s-e863ca57-baf2-4b47-b1ee-a601d7ba1213 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-a0c31a04-496c-4f63-9885-726561acd2ef {
  text-align: center;
}







  #s-a0c31a04-496c-4f63-9885-726561acd2ef img.shogun-image {
    

    
    
    
  }


#s-a0c31a04-496c-4f63-9885-726561acd2ef .shogun-image-content {
  
    align-items: center;
  
}

#s-2567aa03-440f-40f7-8b0a-9937d18c3235 {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(71, 188, 198, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(71, 188, 198, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}@media (max-width: 767px){#s-6ee15dcd-74c3-4e88-9b8f-9b04a47e2306 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}
#s-19f62a92-c9b5-4e5c-982c-8d98e84bca6d {
  margin-bottom: -13px;
text-align: center;
}

#s-19f62a92-c9b5-4e5c-982c-8d98e84bca6d .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-19f62a92-c9b5-4e5c-982c-8d98e84bca6d .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-19f62a92-c9b5-4e5c-982c-8d98e84bca6d .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  line-height: 0.8em;
  
  
}


}@media (max-width: 767px){#s-19f62a92-c9b5-4e5c-982c-8d98e84bca6d .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-be2c5939-b5cc-4227-9368-deef1941ab5b {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-be2c5939-b5cc-4227-9368-deef1941ab5b {
  margin-top: 0px;
}
}






  #s-be2c5939-b5cc-4227-9368-deef1941ab5b img.shogun-image {
    

    
    
    
  }


#s-be2c5939-b5cc-4227-9368-deef1941ab5b .shogun-image-content {
  
    align-items: center;
  
}

#s-5555e9ac-1a9d-490f-9e08-d8162b51d812 {
  margin-bottom: 1%;
min-height: 50px;
}








#s-5555e9ac-1a9d-490f-9e08-d8162b51d812 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5555e9ac-1a9d-490f-9e08-d8162b51d812.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d918991b-2874-4e47-b02c-365fbc464c60 {
  text-align: center;
}







  #s-d918991b-2874-4e47-b02c-365fbc464c60 img.shogun-image {
    

    
    
    
  }


#s-d918991b-2874-4e47-b02c-365fbc464c60 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b0be331-b70f-46cb-9025-ed48bd711d95 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-9b0be331-b70f-46cb-9025-ed48bd711d95 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-9b0be331-b70f-46cb-9025-ed48bd711d95"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9b0be331-b70f-46cb-9025-ed48bd711d95"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9b0be331-b70f-46cb-9025-ed48bd711d95"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9b0be331-b70f-46cb-9025-ed48bd711d95"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-952452f8-2cc3-4f29-8db1-4de9d153bcf0 {
  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-952452f8-2cc3-4f29-8db1-4de9d153bcf0 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-952452f8-2cc3-4f29-8db1-4de9d153bcf0 {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-952452f8-2cc3-4f29-8db1-4de9d153bcf0 img.shogun-image {
    

    
    
    
  }


#s-952452f8-2cc3-4f29-8db1-4de9d153bcf0 .shogun-image-content {
  
    align-items: center;
  
}

#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 {
  margin-top: 50px;
text-align: center;
}
}
#s-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 .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-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 .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-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 .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-8aaefc5b-a45e-467a-9e6e-bb36caec8e68 .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-054ca6df-1ac6-474c-9f70-c34be3bf4210 {
  text-align: left;
}
@media (max-width: 767px){#s-054ca6df-1ac6-474c-9f70-c34be3bf4210 {
  margin-bottom: -30px;
}
}
#s-054ca6df-1ac6-474c-9f70-c34be3bf4210 .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-054ca6df-1ac6-474c-9f70-c34be3bf4210 .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-054ca6df-1ac6-474c-9f70-c34be3bf4210 .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-ad4c23ca-fa53-4df0-9224-70db834979c6 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ad4c23ca-fa53-4df0-9224-70db834979c6 {
  display: none;
}
#s-ad4c23ca-fa53-4df0-9224-70db834979c6, #wrap-s-ad4c23ca-fa53-4df0-9224-70db834979c6 { display:none !important; }}@media (max-width: 767px){#s-ad4c23ca-fa53-4df0-9224-70db834979c6 {
  display: none;
}
#s-ad4c23ca-fa53-4df0-9224-70db834979c6, #wrap-s-ad4c23ca-fa53-4df0-9224-70db834979c6 { display:none !important; }}






  #s-ad4c23ca-fa53-4df0-9224-70db834979c6 img.shogun-image {
    

    
    
    
  }


#s-ad4c23ca-fa53-4df0-9224-70db834979c6 .shogun-image-content {
  
    align-items: center;
  
}

#s-d6956e78-a72a-4f92-8194-9c58f2b953c5 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-d6956e78-a72a-4f92-8194-9c58f2b953c5 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-d6956e78-a72a-4f92-8194-9c58f2b953c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6956e78-a72a-4f92-8194-9c58f2b953c5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6956e78-a72a-4f92-8194-9c58f2b953c5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6956e78-a72a-4f92-8194-9c58f2b953c5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d6956e78-a72a-4f92-8194-9c58f2b953c5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 .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-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 .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-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 .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-0d0e6777-7688-4c91-b4c4-f4cf8f2152c3 .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-631b998c-55c6-46f7-b1b4-8be349628148 {
  text-align: left;
}
@media (max-width: 767px){#s-631b998c-55c6-46f7-b1b4-8be349628148 {
  margin-bottom: -30px;
}
}
#s-631b998c-55c6-46f7-b1b4-8be349628148 .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-631b998c-55c6-46f7-b1b4-8be349628148 .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-631b998c-55c6-46f7-b1b4-8be349628148 .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-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d {
  display: none;
}
#s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d, #wrap-s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d { display:none !important; }}@media (max-width: 767px){#s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d {
  display: none;
}
#s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d, #wrap-s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d { display:none !important; }}






  #s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d img.shogun-image {
    

    
    
    
  }


#s-d97e01d8-29a8-431a-8439-ee9b2d8c4d0d .shogun-image-content {
  
    align-items: center;
  
}

#s-0444ae60-6930-43df-a4e9-47099a4cc1e8 {
  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-0444ae60-6930-43df-a4e9-47099a4cc1e8 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-0444ae60-6930-43df-a4e9-47099a4cc1e8 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-0444ae60-6930-43df-a4e9-47099a4cc1e8 img.shogun-image {
    

    
    
    
  }


#s-0444ae60-6930-43df-a4e9-47099a4cc1e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9b05f14-fda0-40e4-a1f4-391032bdca03 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-e9b05f14-fda0-40e4-a1f4-391032bdca03 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-e9b05f14-fda0-40e4-a1f4-391032bdca03"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9b05f14-fda0-40e4-a1f4-391032bdca03"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e9b05f14-fda0-40e4-a1f4-391032bdca03"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9b05f14-fda0-40e4-a1f4-391032bdca03"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-16cc72d3-583d-430a-8813-5444c0aa11d3 {
  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-16cc72d3-583d-430a-8813-5444c0aa11d3 {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-16cc72d3-583d-430a-8813-5444c0aa11d3 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-16cc72d3-583d-430a-8813-5444c0aa11d3 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-16cc72d3-583d-430a-8813-5444c0aa11d3 img.shogun-image {
    

    
    
    
  }


#s-16cc72d3-583d-430a-8813-5444c0aa11d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 {
  margin-top: 20px;
text-align: center;
}
}
#s-25de2ffb-0ee9-4cce-9176-253ad65b2330 .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-25de2ffb-0ee9-4cce-9176-253ad65b2330 .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-25de2ffb-0ee9-4cce-9176-253ad65b2330 .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-25de2ffb-0ee9-4cce-9176-253ad65b2330 .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-b38a8879-b8a6-45ad-b037-556615780472 {
  text-align: left;
}
@media (max-width: 767px){#s-b38a8879-b8a6-45ad-b037-556615780472 {
  margin-bottom: -30px;
}
}
#s-b38a8879-b8a6-45ad-b037-556615780472 .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-b38a8879-b8a6-45ad-b037-556615780472 .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-b38a8879-b8a6-45ad-b037-556615780472 .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-9119bef9-096e-40ce-b2da-175442e7fafc {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9119bef9-096e-40ce-b2da-175442e7fafc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9119bef9-096e-40ce-b2da-175442e7fafc {
  display: none;
}
#s-9119bef9-096e-40ce-b2da-175442e7fafc, #wrap-s-9119bef9-096e-40ce-b2da-175442e7fafc { display:none !important; }}@media (max-width: 767px){#s-9119bef9-096e-40ce-b2da-175442e7fafc {
  display: none;
}
#s-9119bef9-096e-40ce-b2da-175442e7fafc, #wrap-s-9119bef9-096e-40ce-b2da-175442e7fafc { display:none !important; }}






  #s-9119bef9-096e-40ce-b2da-175442e7fafc img.shogun-image {
    

    
    
    
  }


#s-9119bef9-096e-40ce-b2da-175442e7fafc .shogun-image-content {
  
    align-items: center;
  
}

#s-4aa7d048-12db-440d-9f40-adb1df5d9ddf {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-4aa7d048-12db-440d-9f40-adb1df5d9ddf {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-4aa7d048-12db-440d-9f40-adb1df5d9ddf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4aa7d048-12db-440d-9f40-adb1df5d9ddf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4aa7d048-12db-440d-9f40-adb1df5d9ddf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4aa7d048-12db-440d-9f40-adb1df5d9ddf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-4aa7d048-12db-440d-9f40-adb1df5d9ddf"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 .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-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 .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-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 .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-de918d4a-fd53-4655-8d3e-2ca2ebf53ce4 .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-aab3f083-cdf8-4a54-ad60-7d3c1b36f6b3 {
  text-align: left;
}
@media (max-width: 767px){#s-aab3f083-cdf8-4a54-ad60-7d3c1b36f6b3 {
  margin-bottom: -30px;
}
}
#s-aab3f083-cdf8-4a54-ad60-7d3c1b36f6b3 .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-aab3f083-cdf8-4a54-ad60-7d3c1b36f6b3 .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-aab3f083-cdf8-4a54-ad60-7d3c1b36f6b3 .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-26109efe-ce60-4ca2-8cd4-77b419189ce5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-26109efe-ce60-4ca2-8cd4-77b419189ce5 {
  display: none;
}
#s-26109efe-ce60-4ca2-8cd4-77b419189ce5, #wrap-s-26109efe-ce60-4ca2-8cd4-77b419189ce5 { display:none !important; }}@media (max-width: 767px){#s-26109efe-ce60-4ca2-8cd4-77b419189ce5 {
  display: none;
}
#s-26109efe-ce60-4ca2-8cd4-77b419189ce5, #wrap-s-26109efe-ce60-4ca2-8cd4-77b419189ce5 { display:none !important; }}






  #s-26109efe-ce60-4ca2-8cd4-77b419189ce5 img.shogun-image {
    

    
    
    
  }


#s-26109efe-ce60-4ca2-8cd4-77b419189ce5 .shogun-image-content {
  
    align-items: center;
  
}

#s-b6a81d3a-b4b8-4701-abc5-85af74180e74 {
  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-b6a81d3a-b4b8-4701-abc5-85af74180e74 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-b6a81d3a-b4b8-4701-abc5-85af74180e74 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-b6a81d3a-b4b8-4701-abc5-85af74180e74 img.shogun-image {
    

    
    
    
  }


#s-b6a81d3a-b4b8-4701-abc5-85af74180e74 .shogun-image-content {
  
    align-items: center;
  
}

#s-8e3dc49f-99db-43ae-913a-f61dba37f381 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-8e3dc49f-99db-43ae-913a-f61dba37f381 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-8e3dc49f-99db-43ae-913a-f61dba37f381"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8e3dc49f-99db-43ae-913a-f61dba37f381"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8e3dc49f-99db-43ae-913a-f61dba37f381"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8e3dc49f-99db-43ae-913a-f61dba37f381"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9a0044b0-ec8b-47ce-91e0-40bab7226248 {
  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-9a0044b0-ec8b-47ce-91e0-40bab7226248 {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9a0044b0-ec8b-47ce-91e0-40bab7226248 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-9a0044b0-ec8b-47ce-91e0-40bab7226248 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-9a0044b0-ec8b-47ce-91e0-40bab7226248 img.shogun-image {
    

    
    
    
  }


#s-9a0044b0-ec8b-47ce-91e0-40bab7226248 .shogun-image-content {
  
    align-items: center;
  
}

#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a {
  margin-top: 20px;
text-align: center;
}
}
#s-8a261151-ebe7-4686-b6f7-e05e26d5bf5a .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-8a261151-ebe7-4686-b6f7-e05e26d5bf5a .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-8a261151-ebe7-4686-b6f7-e05e26d5bf5a .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-8a261151-ebe7-4686-b6f7-e05e26d5bf5a .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-0bb3d434-522b-4970-b1bb-7571cfdd9bbd {
  text-align: left;
}
@media (max-width: 767px){#s-0bb3d434-522b-4970-b1bb-7571cfdd9bbd {
  margin-bottom: -30px;
}
}
#s-0bb3d434-522b-4970-b1bb-7571cfdd9bbd .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-0bb3d434-522b-4970-b1bb-7571cfdd9bbd .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-0bb3d434-522b-4970-b1bb-7571cfdd9bbd .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-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 {
  display: none;
}
#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732, #wrap-s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 { display:none !important; }}@media (max-width: 767px){#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 {
  display: none;
}
#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732, #wrap-s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 { display:none !important; }}






  #s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 img.shogun-image {
    

    
    
    
  }


#s-83ba26ad-7c5b-4b13-9fd6-e94c213ae732 .shogun-image-content {
  
    align-items: center;
  
}

#s-f569c773-e661-4576-972f-be53a5f9c491 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f569c773-e661-4576-972f-be53a5f9c491 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f569c773-e661-4576-972f-be53a5f9c491 {
  display: none;
}
#s-f569c773-e661-4576-972f-be53a5f9c491, #wrap-s-f569c773-e661-4576-972f-be53a5f9c491 { display:none !important; }}@media (max-width: 767px){#s-f569c773-e661-4576-972f-be53a5f9c491 {
  display: none;
}
#s-f569c773-e661-4576-972f-be53a5f9c491, #wrap-s-f569c773-e661-4576-972f-be53a5f9c491 { display:none !important; }}






  #s-f569c773-e661-4576-972f-be53a5f9c491 img.shogun-image {
    

    
    
    
  }


#s-f569c773-e661-4576-972f-be53a5f9c491 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-e9a98a37-b5bb-4912-9ee3-7eae8971e5ab"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-f917bd0d-82bd-4036-9bff-0ee1006d3b41 .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-f917bd0d-82bd-4036-9bff-0ee1006d3b41 .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-f917bd0d-82bd-4036-9bff-0ee1006d3b41 .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-f917bd0d-82bd-4036-9bff-0ee1006d3b41 .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-979b6ea5-b735-457b-b499-3d10ac6b9a43 {
  text-align: left;
}
@media (max-width: 767px){#s-979b6ea5-b735-457b-b499-3d10ac6b9a43 {
  margin-bottom: -30px;
}
}
#s-979b6ea5-b735-457b-b499-3d10ac6b9a43 .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-979b6ea5-b735-457b-b499-3d10ac6b9a43 .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-979b6ea5-b735-457b-b499-3d10ac6b9a43 .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-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 {
  display: none;
}
#s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5, #wrap-s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 { display:none !important; }}@media (max-width: 767px){#s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 {
  display: none;
}
#s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5, #wrap-s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 { display:none !important; }}






  #s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 img.shogun-image {
    

    
    
    
  }


#s-6dfb36e8-0c33-400b-9ff5-bc6feeaecda5 .shogun-image-content {
  
    align-items: center;
  
}

#s-5c4b4fa0-d40b-4598-b350-e7dfd56bf1d0 {
  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-5c4b4fa0-d40b-4598-b350-e7dfd56bf1d0 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-5c4b4fa0-d40b-4598-b350-e7dfd56bf1d0 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-5c4b4fa0-d40b-4598-b350-e7dfd56bf1d0 img.shogun-image {
    

    
    
    
  }


#s-5c4b4fa0-d40b-4598-b350-e7dfd56bf1d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-c90407be-74b3-4737-becb-d744c9d208d9 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-c90407be-74b3-4737-becb-d744c9d208d9 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-c90407be-74b3-4737-becb-d744c9d208d9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c90407be-74b3-4737-becb-d744c9d208d9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c90407be-74b3-4737-becb-d744c9d208d9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c90407be-74b3-4737-becb-d744c9d208d9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5687096a-00ec-4092-aa68-33ccded0906c {
  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-5687096a-00ec-4092-aa68-33ccded0906c {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5687096a-00ec-4092-aa68-33ccded0906c {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-5687096a-00ec-4092-aa68-33ccded0906c {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-5687096a-00ec-4092-aa68-33ccded0906c img.shogun-image {
    

    
    
    
  }


#s-5687096a-00ec-4092-aa68-33ccded0906c .shogun-image-content {
  
    align-items: center;
  
}

#s-0c37009f-3141-4a88-aa65-5d461830e9e5 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-0c37009f-3141-4a88-aa65-5d461830e9e5 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c37009f-3141-4a88-aa65-5d461830e9e5 {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c37009f-3141-4a88-aa65-5d461830e9e5 {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-0c37009f-3141-4a88-aa65-5d461830e9e5 {
  margin-top: 20px;
text-align: center;
}
}
#s-0c37009f-3141-4a88-aa65-5d461830e9e5 .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-0c37009f-3141-4a88-aa65-5d461830e9e5 .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-0c37009f-3141-4a88-aa65-5d461830e9e5 .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-0c37009f-3141-4a88-aa65-5d461830e9e5 .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-037b191e-43fb-4701-bbc4-6279398b088f {
  text-align: left;
}
@media (max-width: 767px){#s-037b191e-43fb-4701-bbc4-6279398b088f {
  margin-bottom: -30px;
}
}
#s-037b191e-43fb-4701-bbc4-6279398b088f .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-037b191e-43fb-4701-bbc4-6279398b088f .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-037b191e-43fb-4701-bbc4-6279398b088f .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-a1129938-c91e-494f-aa17-d9f3a9dac405 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a1129938-c91e-494f-aa17-d9f3a9dac405 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a1129938-c91e-494f-aa17-d9f3a9dac405 {
  display: none;
}
#s-a1129938-c91e-494f-aa17-d9f3a9dac405, #wrap-s-a1129938-c91e-494f-aa17-d9f3a9dac405 { display:none !important; }}@media (max-width: 767px){#s-a1129938-c91e-494f-aa17-d9f3a9dac405 {
  display: none;
}
#s-a1129938-c91e-494f-aa17-d9f3a9dac405, #wrap-s-a1129938-c91e-494f-aa17-d9f3a9dac405 { display:none !important; }}






  #s-a1129938-c91e-494f-aa17-d9f3a9dac405 img.shogun-image {
    

    
    
    
  }


#s-a1129938-c91e-494f-aa17-d9f3a9dac405 .shogun-image-content {
  
    align-items: center;
  
}

#s-2cec4f82-8f92-438a-a757-ab10a5164a5c {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-2cec4f82-8f92-438a-a757-ab10a5164a5c {
  padding-top: 10px;
}
}






  #s-2cec4f82-8f92-438a-a757-ab10a5164a5c img.shogun-image {
    

    
    
    
  }


#s-2cec4f82-8f92-438a-a757-ab10a5164a5c .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-571cb969-e758-477d-b02d-4d30a4a7360b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 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-c247b7f1-241f-4e8f-9d59-9882fafb7e12 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 td.shogun-table-column, #s-c247b7f1-241f-4e8f-9d59-9882fafb7e12 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-170f7187-6fba-44c5-b93b-c7ca5da2144d {
  text-align: center;
}







  #s-170f7187-6fba-44c5-b93b-c7ca5da2144d img.shogun-image {
    

    
    
    
  }


#s-170f7187-6fba-44c5-b93b-c7ca5da2144d .shogun-image-content {
  
    align-items: center;
  
}

#s-16bdb315-d996-427e-8e71-951b6c6917e4 {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-16bdb315-d996-427e-8e71-951b6c6917e4 {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-16bdb315-d996-427e-8e71-951b6c6917e4 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-16bdb315-d996-427e-8e71-951b6c6917e4 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-16bdb315-d996-427e-8e71-951b6c6917e4 {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-16bdb315-d996-427e-8e71-951b6c6917e4 .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-16bdb315-d996-427e-8e71-951b6c6917e4 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-8691aa60-be85-4a62-ba12-05d015ae4e5a {
  text-align: center;
}







  #s-8691aa60-be85-4a62-ba12-05d015ae4e5a img.shogun-image {
    

    
    
    
  }


#s-8691aa60-be85-4a62-ba12-05d015ae4e5a .shogun-image-content {
  
    align-items: center;
  
}

#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-1837d7f3-7fe9-41f8-8f94-3b25ae4e9c33 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-cc9015df-7e8b-4427-9199-46856cf2053d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-cc9015df-7e8b-4427-9199-46856cf2053d {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-cc9015df-7e8b-4427-9199-46856cf2053d .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-cc9015df-7e8b-4427-9199-46856cf2053d .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-cc9015df-7e8b-4427-9199-46856cf2053d .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-f4f02ce9-ef6f-4a0f-ab67-4109f33af2d9 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-f4f02ce9-ef6f-4a0f-ab67-4109f33af2d9 img.shogun-image {
    

    
    
    
  }


#s-f4f02ce9-ef6f-4a0f-ab67-4109f33af2d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-ee503973-bb7a-44df-a5b5-9504635d8d77 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-ee503973-bb7a-44df-a5b5-9504635d8d77 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-ee503973-bb7a-44df-a5b5-9504635d8d77"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a6c56d78-018c-40ad-937a-d28c768f2cd9 {
  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-a6c56d78-018c-40ad-937a-d28c768f2cd9 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a6c56d78-018c-40ad-937a-d28c768f2cd9 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-a6c56d78-018c-40ad-937a-d28c768f2cd9 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-a6c56d78-018c-40ad-937a-d28c768f2cd9 img.shogun-image {
    

    
    
    
  }


#s-a6c56d78-018c-40ad-937a-d28c768f2cd9 .shogun-image-content {
  
    align-items: center;
  
}

#s-acbaed43-9706-4055-add3-df44fe71fbdc {
  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-acbaed43-9706-4055-add3-df44fe71fbdc {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-acbaed43-9706-4055-add3-df44fe71fbdc .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-acbaed43-9706-4055-add3-df44fe71fbdc .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-c83b2cd5-e55e-409c-9193-589dc99814d5 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-c83b2cd5-e55e-409c-9193-589dc99814d5 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-c2047343-f31e-4831-aeab-f3cd6600c1b9 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-c2047343-f31e-4831-aeab-f3cd6600c1b9 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-c2047343-f31e-4831-aeab-f3cd6600c1b9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8411f3c7-ffbd-43c6-87cf-e964d036f04c {
  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-8411f3c7-ffbd-43c6-87cf-e964d036f04c {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8411f3c7-ffbd-43c6-87cf-e964d036f04c {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-8411f3c7-ffbd-43c6-87cf-e964d036f04c {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-8411f3c7-ffbd-43c6-87cf-e964d036f04c img.shogun-image {
    

    
    
    
  }


#s-8411f3c7-ffbd-43c6-87cf-e964d036f04c .shogun-image-content {
  
    align-items: center;
  
}

#s-b54b61e2-f056-47d8-8ba8-e079fee987e5 {
  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-b54b61e2-f056-47d8-8ba8-e079fee987e5 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-b54b61e2-f056-47d8-8ba8-e079fee987e5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-b54b61e2-f056-47d8-8ba8-e079fee987e5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-b963997e-41bb-4443-b1e5-2949f9d740b2 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-b963997e-41bb-4443-b1e5-2949f9d740b2 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-dba436d9-b6cd-4003-a6d7-b90edb278a2a {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-dba436d9-b6cd-4003-a6d7-b90edb278a2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dba436d9-b6cd-4003-a6d7-b90edb278a2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d276852-af4c-42a1-b698-c417e4c9b9df {
  text-align: left;
}

#s-7d276852-af4c-42a1-b698-c417e4c9b9df .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-7d276852-af4c-42a1-b698-c417e4c9b9df .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-7a686b97-abe3-4ff8-901e-da83f08b7f1e {
  text-align: left;
}

#s-7a686b97-abe3-4ff8-901e-da83f08b7f1e .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-7a686b97-abe3-4ff8-901e-da83f08b7f1e .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-5fe618f1-5c62-489e-9f8f-cf29d66e33e5 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-5fe618f1-5c62-489e-9f8f-cf29d66e33e5 img.shogun-image {
    

    
    
    
  }


#s-5fe618f1-5c62-489e-9f8f-cf29d66e33e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-483d6ce1-021b-4e00-b93c-9e16d84ff11b {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-483d6ce1-021b-4e00-b93c-9e16d84ff11b img.shogun-image {
    

    
    
    
  }


#s-483d6ce1-021b-4e00-b93c-9e16d84ff11b .shogun-image-content {
  
    align-items: center;
  
}

#s-aad21388-c431-4412-a2d1-35ecf4224e35 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-aad21388-c431-4412-a2d1-35ecf4224e35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aad21388-c431-4412-a2d1-35ecf4224e35.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-121d248f-be1a-4cbd-9bf6-8a1454c69074 {
  text-align: left;
}

#s-121d248f-be1a-4cbd-9bf6-8a1454c69074 .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-121d248f-be1a-4cbd-9bf6-8a1454c69074 .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-76f84d2c-3eac-40b6-81c7-7d20f921b441 {
  text-align: left;
}

#s-76f84d2c-3eac-40b6-81c7-7d20f921b441 .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-76f84d2c-3eac-40b6-81c7-7d20f921b441 .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-296a568a-217d-4e31-9ddb-4f8afda6a08e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-296a568a-217d-4e31-9ddb-4f8afda6a08e .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  
}


@media (max-width: 767px){#s-296a568a-217d-4e31-9ddb-4f8afda6a08e .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-b1449d58-5fc7-416c-944e-8ebaa502998a {
  text-align: left;
}

#s-b1449d58-5fc7-416c-944e-8ebaa502998a .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-b1449d58-5fc7-416c-944e-8ebaa502998a .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-8c697f8b-0773-47d8-8bf5-5e4775ba4138 {
  text-align: left;
}

#s-8c697f8b-0773-47d8-8bf5-5e4775ba4138 .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-8c697f8b-0773-47d8-8bf5-5e4775ba4138 .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-90445cf5-712e-4c7b-8665-4c1a08fd6df7 {
  text-align: center;
}







  #s-90445cf5-712e-4c7b-8665-4c1a08fd6df7 img.shogun-image {
    

    
    
    
  }


#s-90445cf5-712e-4c7b-8665-4c1a08fd6df7 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d760ee9-e1f2-4119-bdc0-1ce81598c769 {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2d760ee9-e1f2-4119-bdc0-1ce81598c769 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d760ee9-e1f2-4119-bdc0-1ce81598c769 {
  
}
}@media (max-width: 767px){#s-2d760ee9-e1f2-4119-bdc0-1ce81598c769 {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-2d760ee9-e1f2-4119-bdc0-1ce81598c769"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d760ee9-e1f2-4119-bdc0-1ce81598c769"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-2d760ee9-e1f2-4119-bdc0-1ce81598c769"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-2d760ee9-e1f2-4119-bdc0-1ce81598c769"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-26652fbf-4a32-4314-b92f-ed4448975c45 {
  text-align: center;
}
@media (max-width: 767px){#s-26652fbf-4a32-4314-b92f-ed4448975c45 {
  margin-left: 40px;
margin-right: 40px;
}
}






  #s-26652fbf-4a32-4314-b92f-ed4448975c45 img.shogun-image {
    

    
    
    
  }


#s-26652fbf-4a32-4314-b92f-ed4448975c45 .shogun-image-content {
  
    align-items: center;
  
}

#s-dfc578ab-c794-45f0-89ff-533e613d2d7e {
  text-align: center;
}
@media (max-width: 767px){#s-dfc578ab-c794-45f0-89ff-533e613d2d7e {
  margin-left: 40px;
margin-right: 40px;
}
}






  #s-dfc578ab-c794-45f0-89ff-533e613d2d7e img.shogun-image {
    

    
    
    
  }


#s-dfc578ab-c794-45f0-89ff-533e613d2d7e .shogun-image-content {
  
    align-items: center;
  
}

#s-99781f4e-6fbf-49f9-bcee-77bc294150e3 {
  margin-top: 14px;
text-align: center;
}







  #s-99781f4e-6fbf-49f9-bcee-77bc294150e3 img.shogun-image {
    

    
    
    
  }


#s-99781f4e-6fbf-49f9-bcee-77bc294150e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c93e4f9-d7c2-42da-83e2-78d5c2d08b27 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-3c93e4f9-d7c2-42da-83e2-78d5c2d08b27 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-3c93e4f9-d7c2-42da-83e2-78d5c2d08b27 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-3c93e4f9-d7c2-42da-83e2-78d5c2d08b27 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-49cd16b1-a6e4-4d27-8029-0e3daf627ad2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-49cd16b1-a6e4-4d27-8029-0e3daf627ad2 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-49cd16b1-a6e4-4d27-8029-0e3daf627ad2 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-49cd16b1-a6e4-4d27-8029-0e3daf627ad2 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-52805a6f-38f9-49f3-ba3c-e64b37aeabe8 {
  min-height: 50px;
}








#s-52805a6f-38f9-49f3-ba3c-e64b37aeabe8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-52805a6f-38f9-49f3-ba3c-e64b37aeabe8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1fd2e235-191b-466a-ada3-abc986a883a0 {
  text-align: center;
}







  #s-1fd2e235-191b-466a-ada3-abc986a883a0 img.shogun-image {
    

    
    
    
  }


#s-1fd2e235-191b-466a-ada3-abc986a883a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-bb765a8d-be6c-42cd-a362-51795278b9a6 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-bb765a8d-be6c-42cd-a362-51795278b9a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb765a8d-be6c-42cd-a362-51795278b9a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12e76b48-b72c-457a-a967-50c6ea88c2db {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-12e76b48-b72c-457a-a967-50c6ea88c2db .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-12e76b48-b72c-457a-a967-50c6ea88c2db .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-4789af31-7056-4d93-9681-4349982c5960 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-4789af31-7056-4d93-9681-4349982c5960 img.shogun-image {
    

    
    
    
  }


#s-4789af31-7056-4d93-9681-4349982c5960 .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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}