.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-32b9ff5b-c66e-499b-8fa0-f4b5cc072b06 {
  min-height: 50px;
}








#s-32b9ff5b-c66e-499b-8fa0-f4b5cc072b06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32b9ff5b-c66e-499b-8fa0-f4b5cc072b06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f24b9e76-0a20-416a-920f-bb78e7978abc {
  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-f24b9e76-0a20-416a-920f-bb78e7978abc {
  
}
}







#s-f24b9e76-0a20-416a-920f-bb78e7978abc > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-f24b9e76-0a20-416a-920f-bb78e7978abc.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-8a5ce3b5-c572-4963-a2fe-c6b46b6c2343 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-8a5ce3b5-c572-4963-a2fe-c6b46b6c2343 {
  
}
}






  #s-8a5ce3b5-c572-4963-a2fe-c6b46b6c2343 img.shogun-image {
    

    
    
    
  }


#s-8a5ce3b5-c572-4963-a2fe-c6b46b6c2343 .shogun-image-content {
  
    align-items: center;
  
}

#s-e86f12bc-50e7-42ae-98fe-a67bb636fb2b {
  min-height: 50px;
background-color: rgba(191, 234, 176, 1);
}








#s-e86f12bc-50e7-42ae-98fe-a67bb636fb2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e86f12bc-50e7-42ae-98fe-a67bb636fb2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-126d9292-ad5a-4719-a045-94ee7667a024 {
  min-height: 50px;
}








#s-126d9292-ad5a-4719-a045-94ee7667a024 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-126d9292-ad5a-4719-a045-94ee7667a024.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af8b2c7f-f0cc-4ad9-8554-03ae2fa06267 {
  min-height: 50px;
}








#s-af8b2c7f-f0cc-4ad9-8554-03ae2fa06267 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af8b2c7f-f0cc-4ad9-8554-03ae2fa06267.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f16493dd-c61c-4254-a384-b2a666744394 {
  text-align: center;
}







  #s-f16493dd-c61c-4254-a384-b2a666744394 img.shogun-image {
    

    
    
    
  }


#s-f16493dd-c61c-4254-a384-b2a666744394 .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-c9740a33-2e06-4a0c-9f43-47aa9315df3d {
  text-align: center;
}
@media (max-width: 767px){#s-c9740a33-2e06-4a0c-9f43-47aa9315df3d {
  margin-bottom: -10px;
}
}
#s-c9740a33-2e06-4a0c-9f43-47aa9315df3d .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-c9740a33-2e06-4a0c-9f43-47aa9315df3d .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-c9740a33-2e06-4a0c-9f43-47aa9315df3d .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-a01908e1-d68c-4dce-919f-1a2aa334ad6b {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-a01908e1-d68c-4dce-919f-1a2aa334ad6b {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a01908e1-d68c-4dce-919f-1a2aa334ad6b {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a01908e1-d68c-4dce-919f-1a2aa334ad6b {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-a01908e1-d68c-4dce-919f-1a2aa334ad6b {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-44cd2928-f834-49ef-b10f-caca0c9ea49d {
  text-align: center;
}







  #s-44cd2928-f834-49ef-b10f-caca0c9ea49d img.shogun-image {
    

    
    
    
  }


#s-44cd2928-f834-49ef-b10f-caca0c9ea49d .shogun-image-content {
  
    align-items: center;
  
}

#s-ad541691-e02b-4918-bfe6-db08db7e072a {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-ad541691-e02b-4918-bfe6-db08db7e072a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad541691-e02b-4918-bfe6-db08db7e072a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6d71413-ee5f-470b-8d40-8f8e65ddcb2a {
  text-align: center;
}







  #s-f6d71413-ee5f-470b-8d40-8f8e65ddcb2a img.shogun-image {
    

    
    
    
  }


#s-f6d71413-ee5f-470b-8d40-8f8e65ddcb2a .shogun-image-content {
  
    align-items: center;
  
}

#s-bfd5ebd0-8381-4647-9743-41648039446b {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(191, 234, 176, 1);
}








#s-bfd5ebd0-8381-4647-9743-41648039446b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfd5ebd0-8381-4647-9743-41648039446b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee857386-46b0-460c-87aa-108b63fe31da {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-ee857386-46b0-460c-87aa-108b63fe31da {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-ee857386-46b0-460c-87aa-108b63fe31da .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-ee857386-46b0-460c-87aa-108b63fe31da .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-8541a1a3-3d94-4c7b-836f-85554c2729cc {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-8541a1a3-3d94-4c7b-836f-85554c2729cc {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8541a1a3-3d94-4c7b-836f-85554c2729cc {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-8541a1a3-3d94-4c7b-836f-85554c2729cc {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-8541a1a3-3d94-4c7b-836f-85554c2729cc img.shogun-image {
    

    
    
    
  }


#s-8541a1a3-3d94-4c7b-836f-85554c2729cc .shogun-image-content {
  
    align-items: center;
  
}

#s-4e920ec9-1b9d-4663-bd5e-0e974e5c961f {
  text-align: center;
}







  #s-4e920ec9-1b9d-4663-bd5e-0e974e5c961f img.shogun-image {
    

    
    
    
  }


#s-4e920ec9-1b9d-4663-bd5e-0e974e5c961f .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-ea1c896e-e4d6-4bba-af2a-8238a27c78ab {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ea1c896e-e4d6-4bba-af2a-8238a27c78ab"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-e35f2400-26e4-4633-ad12-05c39ab2cc65 {
  text-align: center;
}







  #s-e35f2400-26e4-4633-ad12-05c39ab2cc65 img.shogun-image {
    

    
    
    
  }


#s-e35f2400-26e4-4633-ad12-05c39ab2cc65 .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-288e4251-7fda-442c-95b5-9209af74f5e5 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-288e4251-7fda-442c-95b5-9209af74f5e5 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-288e4251-7fda-442c-95b5-9209af74f5e5 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-288e4251-7fda-442c-95b5-9209af74f5e5 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-288e4251-7fda-442c-95b5-9209af74f5e5 td.shogun-table-column, #s-288e4251-7fda-442c-95b5-9209af74f5e5 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-d99fc67e-9e4e-44a3-b5fc-b245a534c996 {
  text-align: center;
}







  #s-d99fc67e-9e4e-44a3-b5fc-b245a534c996 img.shogun-image {
    

    
    
    
  }


#s-d99fc67e-9e4e-44a3-b5fc-b245a534c996 .shogun-image-content {
  
    align-items: center;
  
}

#s-3816a652-d167-44cb-a8b1-baab2be59a1d {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-4b774caf-2169-4596-a701-e48e5e4538c1 {
  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-4b774caf-2169-4596-a701-e48e5e4538c1 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4b774caf-2169-4596-a701-e48e5e4538c1 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-4b774caf-2169-4596-a701-e48e5e4538c1 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-4b774caf-2169-4596-a701-e48e5e4538c1 .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-4b774caf-2169-4596-a701-e48e5e4538c1 .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-4b774caf-2169-4596-a701-e48e5e4538c1 .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-737018a0-cb2a-4525-9d88-ecb0b6be991d {
  margin-bottom: -13px;
text-align: center;
}

#s-737018a0-cb2a-4525-9d88-ecb0b6be991d .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-737018a0-cb2a-4525-9d88-ecb0b6be991d .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-737018a0-cb2a-4525-9d88-ecb0b6be991d .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-b106fa06-8d89-49e0-84af-a6dfabd3b63b {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-b106fa06-8d89-49e0-84af-a6dfabd3b63b {
  margin-top: 0px;
}
}






  #s-b106fa06-8d89-49e0-84af-a6dfabd3b63b img.shogun-image {
    

    
    
    
  }


#s-b106fa06-8d89-49e0-84af-a6dfabd3b63b .shogun-image-content {
  
    align-items: center;
  
}

#s-72bdf581-e0c5-428f-945f-09631b11506f {
  margin-bottom: 1%;
min-height: 50px;
}








#s-72bdf581-e0c5-428f-945f-09631b11506f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72bdf581-e0c5-428f-945f-09631b11506f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33d72804-0251-4768-9ef1-04240b59470d {
  text-align: center;
}







  #s-33d72804-0251-4768-9ef1-04240b59470d img.shogun-image {
    

    
    
    
  }


#s-33d72804-0251-4768-9ef1-04240b59470d .shogun-image-content {
  
    align-items: center;
  
}

#s-a77c97de-110d-4dc1-881e-b88173ad38fd {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-a77c97de-110d-4dc1-881e-b88173ad38fd {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-a77c97de-110d-4dc1-881e-b88173ad38fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a77c97de-110d-4dc1-881e-b88173ad38fd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a77c97de-110d-4dc1-881e-b88173ad38fd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a77c97de-110d-4dc1-881e-b88173ad38fd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8cacb4c6-232a-4981-8c03-e0edb9d63730 {
  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-8cacb4c6-232a-4981-8c03-e0edb9d63730 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-8cacb4c6-232a-4981-8c03-e0edb9d63730 {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-8cacb4c6-232a-4981-8c03-e0edb9d63730 img.shogun-image {
    

    
    
    
  }


#s-8cacb4c6-232a-4981-8c03-e0edb9d63730 .shogun-image-content {
  
    align-items: center;
  
}

#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 {
  margin-top: 50px;
text-align: center;
}
}
#s-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 .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-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 .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-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 .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-e3e94e0b-83d3-4af5-9a97-4e4c5f08e780 .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-03cae80a-984e-4ba3-bd19-d4d8070156c2 {
  text-align: left;
}
@media (max-width: 767px){#s-03cae80a-984e-4ba3-bd19-d4d8070156c2 {
  margin-bottom: -30px;
}
}
#s-03cae80a-984e-4ba3-bd19-d4d8070156c2 .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-03cae80a-984e-4ba3-bd19-d4d8070156c2 .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-03cae80a-984e-4ba3-bd19-d4d8070156c2 .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-c053c93e-88ed-41b6-8bb2-59879ad88c10 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c053c93e-88ed-41b6-8bb2-59879ad88c10 {
  display: none;
}
#s-c053c93e-88ed-41b6-8bb2-59879ad88c10, #wrap-s-c053c93e-88ed-41b6-8bb2-59879ad88c10 { display: none !important; }}@media (max-width: 767px){#s-c053c93e-88ed-41b6-8bb2-59879ad88c10 {
  display: none;
}
#s-c053c93e-88ed-41b6-8bb2-59879ad88c10, #wrap-s-c053c93e-88ed-41b6-8bb2-59879ad88c10 { display: none !important; }}






  #s-c053c93e-88ed-41b6-8bb2-59879ad88c10 img.shogun-image {
    

    
    
    
  }


#s-c053c93e-88ed-41b6-8bb2-59879ad88c10 .shogun-image-content {
  
    align-items: center;
  
}

#s-13e29b75-6348-4196-abb9-8881a61eafdf {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-13e29b75-6348-4196-abb9-8881a61eafdf {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-13e29b75-6348-4196-abb9-8881a61eafdf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-13e29b75-6348-4196-abb9-8881a61eafdf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-13e29b75-6348-4196-abb9-8881a61eafdf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-13e29b75-6348-4196-abb9-8881a61eafdf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-13e29b75-6348-4196-abb9-8881a61eafdf"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 .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-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 .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-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 .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-ddbaf449-e84c-45ce-b8cc-fc92e7dee146 .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-e8a63f3b-78fe-4583-9300-f51ece2a8b08 {
  text-align: left;
}
@media (max-width: 767px){#s-e8a63f3b-78fe-4583-9300-f51ece2a8b08 {
  margin-bottom: -30px;
}
}
#s-e8a63f3b-78fe-4583-9300-f51ece2a8b08 .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-e8a63f3b-78fe-4583-9300-f51ece2a8b08 .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-e8a63f3b-78fe-4583-9300-f51ece2a8b08 .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-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd {
  display: none;
}
#s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd, #wrap-s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd { display: none !important; }}@media (max-width: 767px){#s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd {
  display: none;
}
#s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd, #wrap-s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd { display: none !important; }}






  #s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd img.shogun-image {
    

    
    
    
  }


#s-7e98b69d-eacf-485b-bbe9-1c166ed6b3dd .shogun-image-content {
  
    align-items: center;
  
}

#s-f9f1ed22-0c1a-4448-93b0-e3d876785941 {
  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-f9f1ed22-0c1a-4448-93b0-e3d876785941 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-f9f1ed22-0c1a-4448-93b0-e3d876785941 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-f9f1ed22-0c1a-4448-93b0-e3d876785941 img.shogun-image {
    

    
    
    
  }


#s-f9f1ed22-0c1a-4448-93b0-e3d876785941 .shogun-image-content {
  
    align-items: center;
  
}

#s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebb22f78-2975-4f94-9c2b-93abfca4f1b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 {
  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-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 img.shogun-image {
    

    
    
    
  }


#s-dbd76d58-bf31-4dc9-8dc8-8d25b6988ff0 .shogun-image-content {
  
    align-items: center;
  
}

#s-b65c859b-09df-46d5-aba5-b9733bffad96 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-b65c859b-09df-46d5-aba5-b9733bffad96 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b65c859b-09df-46d5-aba5-b9733bffad96 {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b65c859b-09df-46d5-aba5-b9733bffad96 {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-b65c859b-09df-46d5-aba5-b9733bffad96 {
  margin-top: 20px;
text-align: center;
}
}
#s-b65c859b-09df-46d5-aba5-b9733bffad96 .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-b65c859b-09df-46d5-aba5-b9733bffad96 .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-b65c859b-09df-46d5-aba5-b9733bffad96 .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-b65c859b-09df-46d5-aba5-b9733bffad96 .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-728c80f4-b433-4294-8c7b-5f694cf7a927 {
  text-align: left;
}
@media (max-width: 767px){#s-728c80f4-b433-4294-8c7b-5f694cf7a927 {
  margin-bottom: -30px;
}
}
#s-728c80f4-b433-4294-8c7b-5f694cf7a927 .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-728c80f4-b433-4294-8c7b-5f694cf7a927 .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-728c80f4-b433-4294-8c7b-5f694cf7a927 .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-d4d06646-8672-4217-a063-6477c2fbf710 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d4d06646-8672-4217-a063-6477c2fbf710 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d4d06646-8672-4217-a063-6477c2fbf710 {
  display: none;
}
#s-d4d06646-8672-4217-a063-6477c2fbf710, #wrap-s-d4d06646-8672-4217-a063-6477c2fbf710 { display: none !important; }}@media (max-width: 767px){#s-d4d06646-8672-4217-a063-6477c2fbf710 {
  display: none;
}
#s-d4d06646-8672-4217-a063-6477c2fbf710, #wrap-s-d4d06646-8672-4217-a063-6477c2fbf710 { display: none !important; }}






  #s-d4d06646-8672-4217-a063-6477c2fbf710 img.shogun-image {
    

    
    
    
  }


#s-d4d06646-8672-4217-a063-6477c2fbf710 .shogun-image-content {
  
    align-items: center;
  
}

#s-26c50fc3-8a97-467a-b3f8-076733287362 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-26c50fc3-8a97-467a-b3f8-076733287362 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-26c50fc3-8a97-467a-b3f8-076733287362"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26c50fc3-8a97-467a-b3f8-076733287362"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-26c50fc3-8a97-467a-b3f8-076733287362"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-26c50fc3-8a97-467a-b3f8-076733287362"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-26c50fc3-8a97-467a-b3f8-076733287362"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 .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-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 .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-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 .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-115e3c51-fc09-4714-b0cb-6bf0c3ce7ec9 .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-ceeade42-f9d2-4aa2-a241-9b042cba8802 {
  text-align: left;
}
@media (max-width: 767px){#s-ceeade42-f9d2-4aa2-a241-9b042cba8802 {
  margin-bottom: -30px;
}
}
#s-ceeade42-f9d2-4aa2-a241-9b042cba8802 .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-ceeade42-f9d2-4aa2-a241-9b042cba8802 .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-ceeade42-f9d2-4aa2-a241-9b042cba8802 .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-b7f62136-7229-481d-ae5e-7e615daf3189 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b7f62136-7229-481d-ae5e-7e615daf3189 {
  display: none;
}
#s-b7f62136-7229-481d-ae5e-7e615daf3189, #wrap-s-b7f62136-7229-481d-ae5e-7e615daf3189 { display: none !important; }}@media (max-width: 767px){#s-b7f62136-7229-481d-ae5e-7e615daf3189 {
  display: none;
}
#s-b7f62136-7229-481d-ae5e-7e615daf3189, #wrap-s-b7f62136-7229-481d-ae5e-7e615daf3189 { display: none !important; }}






  #s-b7f62136-7229-481d-ae5e-7e615daf3189 img.shogun-image {
    

    
    
    
  }


#s-b7f62136-7229-481d-ae5e-7e615daf3189 .shogun-image-content {
  
    align-items: center;
  
}

#s-433c0cb3-0354-4829-8e23-6ad6a89b6fca {
  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-433c0cb3-0354-4829-8e23-6ad6a89b6fca {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-433c0cb3-0354-4829-8e23-6ad6a89b6fca {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-433c0cb3-0354-4829-8e23-6ad6a89b6fca img.shogun-image {
    

    
    
    
  }


#s-433c0cb3-0354-4829-8e23-6ad6a89b6fca .shogun-image-content {
  
    align-items: center;
  
}

#s-06becf08-8bd5-4b48-8cb6-05e0243aa0ba {
  min-height: 50px;
}








#s-06becf08-8bd5-4b48-8cb6-05e0243aa0ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06becf08-8bd5-4b48-8cb6-05e0243aa0ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7452f2e5-736d-4ff5-a010-37711e2429cb {
  text-align: left;
}

#s-7452f2e5-736d-4ff5-a010-37711e2429cb .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-7452f2e5-736d-4ff5-a010-37711e2429cb .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-c095eaca-be54-4817-9645-1bfbfbd458b5 {
  text-align: left;
}

#s-c095eaca-be54-4817-9645-1bfbfbd458b5 .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-c095eaca-be54-4817-9645-1bfbfbd458b5 .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-88e9ad81-42f8-4638-af42-8cc30ccc88b8 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-88e9ad81-42f8-4638-af42-8cc30ccc88b8 {
  padding-top: 10px;
}
}






  #s-88e9ad81-42f8-4638-af42-8cc30ccc88b8 img.shogun-image {
    

    
    
    
  }


#s-88e9ad81-42f8-4638-af42-8cc30ccc88b8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5df79f2f-5d40-473b-b2a7-e42f9e7b5213"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-11951131-e2fd-473c-999c-c40852169cef {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-11951131-e2fd-473c-999c-c40852169cef .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-11951131-e2fd-473c-999c-c40852169cef table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-11951131-e2fd-473c-999c-c40852169cef 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-11951131-e2fd-473c-999c-c40852169cef td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-11951131-e2fd-473c-999c-c40852169cef td.shogun-table-column, #s-11951131-e2fd-473c-999c-c40852169cef td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-7ef9fc3c-fe7c-4b68-8ef5-4963acb21b1e {
  text-align: center;
}







  #s-7ef9fc3c-fe7c-4b68-8ef5-4963acb21b1e img.shogun-image {
    

    
    
    
  }


#s-7ef9fc3c-fe7c-4b68-8ef5-4963acb21b1e .shogun-image-content {
  
    align-items: center;
  
}

#s-5fbf8503-9fd8-43f1-a065-133ec400c052 {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-5fbf8503-9fd8-43f1-a065-133ec400c052 {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5fbf8503-9fd8-43f1-a065-133ec400c052 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5fbf8503-9fd8-43f1-a065-133ec400c052 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-5fbf8503-9fd8-43f1-a065-133ec400c052 {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-5fbf8503-9fd8-43f1-a065-133ec400c052 .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-5fbf8503-9fd8-43f1-a065-133ec400c052 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-56c4b103-17c8-4661-a5ed-548045c1ae29 {
  text-align: center;
}







  #s-56c4b103-17c8-4661-a5ed-548045c1ae29 img.shogun-image {
    

    
    
    
  }


#s-56c4b103-17c8-4661-a5ed-548045c1ae29 .shogun-image-content {
  
    align-items: center;
  
}

#s-6789bcf6-acb6-48e5-bc94-1603803e9468 {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6789bcf6-acb6-48e5-bc94-1603803e9468 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-6789bcf6-acb6-48e5-bc94-1603803e9468 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-6789bcf6-acb6-48e5-bc94-1603803e9468 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-6789bcf6-acb6-48e5-bc94-1603803e9468 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (max-width: 767px){#s-6789bcf6-acb6-48e5-bc94-1603803e9468 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-1c2205ce-3146-4a4c-b251-ecdee1b54ec8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-1c2205ce-3146-4a4c-b251-ecdee1b54ec8 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-1c2205ce-3146-4a4c-b251-ecdee1b54ec8 .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-1c2205ce-3146-4a4c-b251-ecdee1b54ec8 .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-1c2205ce-3146-4a4c-b251-ecdee1b54ec8 .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-53a6d693-ce48-4b81-90b8-73acad593d32 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-53a6d693-ce48-4b81-90b8-73acad593d32 img.shogun-image {
    

    
    
    
  }


#s-53a6d693-ce48-4b81-90b8-73acad593d32 .shogun-image-content {
  
    align-items: center;
  
}

#s-a961d412-2217-445d-ab4e-ebbceb3c7c40 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-a961d412-2217-445d-ab4e-ebbceb3c7c40 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-a961d412-2217-445d-ab4e-ebbceb3c7c40"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-aba99c4a-818f-462d-ba20-11f1cb682e2e {
  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-aba99c4a-818f-462d-ba20-11f1cb682e2e {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-aba99c4a-818f-462d-ba20-11f1cb682e2e {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-aba99c4a-818f-462d-ba20-11f1cb682e2e {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-aba99c4a-818f-462d-ba20-11f1cb682e2e img.shogun-image {
    

    
    
    
  }


#s-aba99c4a-818f-462d-ba20-11f1cb682e2e .shogun-image-content {
  
    align-items: center;
  
}

#s-e857a304-d3a2-4ce8-9969-59e02b63322d {
  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-e857a304-d3a2-4ce8-9969-59e02b63322d {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-e857a304-d3a2-4ce8-9969-59e02b63322d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-e857a304-d3a2-4ce8-9969-59e02b63322d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-2132df14-450b-4ab8-9b28-c346347c960a {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-2132df14-450b-4ab8-9b28-c346347c960a {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-f25bd9ac-10a5-4e7c-b75b-5166aed6fbd3"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 {
  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-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 img.shogun-image {
    

    
    
    
  }


#s-df74a7bf-f0fc-4457-b0e7-896be6fb7d71 .shogun-image-content {
  
    align-items: center;
  
}

#s-21a7fec3-9418-44ff-b71d-943dc2e0e142 {
  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-21a7fec3-9418-44ff-b71d-943dc2e0e142 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-21a7fec3-9418-44ff-b71d-943dc2e0e142 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-21a7fec3-9418-44ff-b71d-943dc2e0e142 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-b185498b-442f-4ba1-a56c-e3dd7c5a5a80 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-b185498b-442f-4ba1-a56c-e3dd7c5a5a80 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-38d0ae44-cacb-4f1c-8854-3266974b900a {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-38d0ae44-cacb-4f1c-8854-3266974b900a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38d0ae44-cacb-4f1c-8854-3266974b900a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c90a2f07-a37a-457b-8a8d-c5f7ff8cdb1c {
  text-align: left;
}

#s-c90a2f07-a37a-457b-8a8d-c5f7ff8cdb1c .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-c90a2f07-a37a-457b-8a8d-c5f7ff8cdb1c .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-b04560ec-4f9b-4db3-aca1-5a20cc1886d9 {
  text-align: left;
}

#s-b04560ec-4f9b-4db3-aca1-5a20cc1886d9 .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-b04560ec-4f9b-4db3-aca1-5a20cc1886d9 .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-addc7d79-1a31-431a-94d3-c61b0d087b5e {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-addc7d79-1a31-431a-94d3-c61b0d087b5e img.shogun-image {
    

    
    
    
  }


#s-addc7d79-1a31-431a-94d3-c61b0d087b5e .shogun-image-content {
  
    align-items: center;
  
}

#s-7cb55238-9822-47a6-b5bf-f0cd37d794e6 {
  text-align: center;
}







  #s-7cb55238-9822-47a6-b5bf-f0cd37d794e6 img.shogun-image {
    

    
    
    
  }


#s-7cb55238-9822-47a6-b5bf-f0cd37d794e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f {
  
}
}@media (max-width: 767px){#s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-47d9e1b3-502d-4a63-beb4-7c75e3a9c54f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-f13c7bc3-2a88-4039-9e06-7e6bae3f0969 {
  text-align: center;
}
@media (max-width: 767px){#s-f13c7bc3-2a88-4039-9e06-7e6bae3f0969 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-f13c7bc3-2a88-4039-9e06-7e6bae3f0969 .shogun-image-content {
  
    align-items: center;
  
}

#s-14967eee-b6d6-4d04-8477-dde42b869b17 {
  text-align: center;
}
@media (max-width: 767px){#s-14967eee-b6d6-4d04-8477-dde42b869b17 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-14967eee-b6d6-4d04-8477-dde42b869b17 .shogun-image-content {
  
    align-items: center;
  
}

#s-dd67926e-b570-4212-af9b-6115aafd3767 {
  margin-top: 14px;
text-align: center;
}







  #s-dd67926e-b570-4212-af9b-6115aafd3767 img.shogun-image {
    

    
    
    
  }


#s-dd67926e-b570-4212-af9b-6115aafd3767 .shogun-image-content {
  
    align-items: center;
  
}

#s-d86994d4-cea3-44e0-8eda-28c4d7296b04 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-d86994d4-cea3-44e0-8eda-28c4d7296b04 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-d86994d4-cea3-44e0-8eda-28c4d7296b04 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-d86994d4-cea3-44e0-8eda-28c4d7296b04 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-4d88f994-3235-41a6-9ca3-cca3f49693d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-4d88f994-3235-41a6-9ca3-cca3f49693d1 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-4d88f994-3235-41a6-9ca3-cca3f49693d1 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-4d88f994-3235-41a6-9ca3-cca3f49693d1 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-494529d8-d8be-47db-8077-f179bde9f6cc {
  min-height: 50px;
}








#s-494529d8-d8be-47db-8077-f179bde9f6cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-494529d8-d8be-47db-8077-f179bde9f6cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7fd04894-ac89-4eae-939e-52484260bf5e {
  text-align: center;
}







  #s-7fd04894-ac89-4eae-939e-52484260bf5e img.shogun-image {
    

    
    
    
  }


#s-7fd04894-ac89-4eae-939e-52484260bf5e .shogun-image-content {
  
    align-items: center;
  
}

#s-17e921a1-d4b6-4700-8a3c-57dca2a1a40c {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-17e921a1-d4b6-4700-8a3c-57dca2a1a40c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17e921a1-d4b6-4700-8a3c-57dca2a1a40c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-757e9012-8f26-41e9-8464-f1e3607b2268 {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-757e9012-8f26-41e9-8464-f1e3607b2268 .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-757e9012-8f26-41e9-8464-f1e3607b2268 .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-4c23dda4-16fa-454b-b7b1-c11e9348272b {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-4c23dda4-16fa-454b-b7b1-c11e9348272b img.shogun-image {
    

    
    
    
  }


#s-4c23dda4-16fa-454b-b7b1-c11e9348272b .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}
