.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-4c63de95-9c67-4d84-99b4-7cc2097e424f {
  min-height: 50px;
}








#s-4c63de95-9c67-4d84-99b4-7cc2097e424f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c63de95-9c67-4d84-99b4-7cc2097e424f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c75acf2d-a30a-49ec-8e66-ed292d7581b4 {
  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-c75acf2d-a30a-49ec-8e66-ed292d7581b4 {
  
}
}







#s-c75acf2d-a30a-49ec-8e66-ed292d7581b4 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-c75acf2d-a30a-49ec-8e66-ed292d7581b4.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-0bb5c85d-ee00-4047-b669-14438ea23554 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-0bb5c85d-ee00-4047-b669-14438ea23554 {
  
}
}






  #s-0bb5c85d-ee00-4047-b669-14438ea23554 img.shogun-image {
    

    
    
    
  }


#s-0bb5c85d-ee00-4047-b669-14438ea23554 .shogun-image-content {
  
    align-items: center;
  
}

#s-48d13b96-bcf4-491f-bdbb-1af118ab9b0e {
  min-height: 50px;
background-color: rgba(177, 227, 252, 1);
}








#s-48d13b96-bcf4-491f-bdbb-1af118ab9b0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48d13b96-bcf4-491f-bdbb-1af118ab9b0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc2cc6cd-0e76-42ed-9186-157baa39bfef {
  min-height: 50px;
}








#s-cc2cc6cd-0e76-42ed-9186-157baa39bfef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc2cc6cd-0e76-42ed-9186-157baa39bfef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30428db2-ad02-4abc-981e-09b09e2a41db {
  min-height: 50px;
}








#s-30428db2-ad02-4abc-981e-09b09e2a41db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30428db2-ad02-4abc-981e-09b09e2a41db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ab522c7-e59a-4c89-a898-5cc53bb66528 {
  text-align: center;
}







  #s-9ab522c7-e59a-4c89-a898-5cc53bb66528 img.shogun-image {
    

    
    
    
  }


#s-9ab522c7-e59a-4c89-a898-5cc53bb66528 .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-b359c339-c86a-49b0-a0fc-6fa32c47b116 {
  text-align: center;
}

#s-b359c339-c86a-49b0-a0fc-6fa32c47b116 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-b359c339-c86a-49b0-a0fc-6fa32c47b116 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-b359c339-c86a-49b0-a0fc-6fa32c47b116 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}


}
#s-b5db3356-ed4e-401a-88d6-fcf4c4a2ca6c {
  text-align: center;
}
@media (max-width: 767px){#s-b5db3356-ed4e-401a-88d6-fcf4c4a2ca6c {
  margin-bottom: -10px;
}
}
#s-b5db3356-ed4e-401a-88d6-fcf4c4a2ca6c .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-b5db3356-ed4e-401a-88d6-fcf4c4a2ca6c .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-b5db3356-ed4e-401a-88d6-fcf4c4a2ca6c .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-74db2582-31d8-4cfc-b445-4ab23b54137a {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-74db2582-31d8-4cfc-b445-4ab23b54137a {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-74db2582-31d8-4cfc-b445-4ab23b54137a {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-74db2582-31d8-4cfc-b445-4ab23b54137a {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-74db2582-31d8-4cfc-b445-4ab23b54137a {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-11d60c63-a6d1-4b07-9e11-d62b3aad445e {
  text-align: center;
}







  #s-11d60c63-a6d1-4b07-9e11-d62b3aad445e img.shogun-image {
    

    
    
    
  }


#s-11d60c63-a6d1-4b07-9e11-d62b3aad445e .shogun-image-content {
  
    align-items: center;
  
}

#s-dfca9cf6-5766-44f8-bf9d-23b801193865 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-dfca9cf6-5766-44f8-bf9d-23b801193865 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dfca9cf6-5766-44f8-bf9d-23b801193865.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fcffb7bc-df5c-4685-9da7-a7357608a284 {
  text-align: center;
}







  #s-fcffb7bc-df5c-4685-9da7-a7357608a284 img.shogun-image {
    

    
    
    
  }


#s-fcffb7bc-df5c-4685-9da7-a7357608a284 .shogun-image-content {
  
    align-items: center;
  
}

#s-4606937d-7b75-48df-a8d0-39d18322b94e {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(177, 227, 252, 1);
}








#s-4606937d-7b75-48df-a8d0-39d18322b94e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4606937d-7b75-48df-a8d0-39d18322b94e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a2e1c3c9-8900-4988-9ac4-8925d5fc986f {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a2e1c3c9-8900-4988-9ac4-8925d5fc986f {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-a2e1c3c9-8900-4988-9ac4-8925d5fc986f .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-a2e1c3c9-8900-4988-9ac4-8925d5fc986f .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-a2e1c3c9-8900-4988-9ac4-8925d5fc986f .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-4ad003e9-daaa-4e58-bd56-1c45ea183899 {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4ad003e9-daaa-4e58-bd56-1c45ea183899 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4ad003e9-daaa-4e58-bd56-1c45ea183899 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-4ad003e9-daaa-4e58-bd56-1c45ea183899 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-4ad003e9-daaa-4e58-bd56-1c45ea183899 img.shogun-image {
    

    
    
    
  }


#s-4ad003e9-daaa-4e58-bd56-1c45ea183899 .shogun-image-content {
  
    align-items: center;
  
}

#s-24713a05-f09c-4eae-8f25-6e1acf46af7c {
  text-align: center;
}







  #s-24713a05-f09c-4eae-8f25-6e1acf46af7c img.shogun-image {
    

    
    
    
  }


#s-24713a05-f09c-4eae-8f25-6e1acf46af7c .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-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8dffd233-1dcc-44a6-bdee-4bbcc61f5bf0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-5cb18497-d10c-4df8-9b8c-6733eddbf2c3 {
  text-align: center;
}







  #s-5cb18497-d10c-4df8-9b8c-6733eddbf2c3 img.shogun-image {
    

    
    
    
  }


#s-5cb18497-d10c-4df8-9b8c-6733eddbf2c3 .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-b8ecbab5-a392-43a5-b04c-baaf19779602 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-b8ecbab5-a392-43a5-b04c-baaf19779602 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-b8ecbab5-a392-43a5-b04c-baaf19779602 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-b8ecbab5-a392-43a5-b04c-baaf19779602 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-b8ecbab5-a392-43a5-b04c-baaf19779602 td.shogun-table-column, #s-b8ecbab5-a392-43a5-b04c-baaf19779602 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-3da381fa-d060-4132-8d7d-70e1df758dd4 {
  text-align: center;
}







  #s-3da381fa-d060-4132-8d7d-70e1df758dd4 img.shogun-image {
    

    
    
    
  }


#s-3da381fa-d060-4132-8d7d-70e1df758dd4 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2c157c7-74ad-42ec-8ea8-4440a36b43af {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(134, 85, 65, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(134, 85, 65, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 .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-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 .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-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 .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-fa2b77b6-74c8-40d1-aadd-7afb9bfb9c60 .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-0be4a0c8-afa0-4258-a842-8a5fa4b3b9a2 {
  margin-bottom: -13px;
text-align: center;
}

#s-0be4a0c8-afa0-4258-a842-8a5fa4b3b9a2 .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-0be4a0c8-afa0-4258-a842-8a5fa4b3b9a2 .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-0be4a0c8-afa0-4258-a842-8a5fa4b3b9a2 .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-0be4a0c8-afa0-4258-a842-8a5fa4b3b9a2 .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-a06c5365-5cbb-4f34-ba40-c9a029043291 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-a06c5365-5cbb-4f34-ba40-c9a029043291 {
  margin-top: 0px;
}
}






  #s-a06c5365-5cbb-4f34-ba40-c9a029043291 img.shogun-image {
    

    
    
    
  }


#s-a06c5365-5cbb-4f34-ba40-c9a029043291 .shogun-image-content {
  
    align-items: center;
  
}

#s-152f5e97-5c26-4981-a139-bbf8bbaeed0a {
  margin-bottom: 1%;
min-height: 50px;
}








#s-152f5e97-5c26-4981-a139-bbf8bbaeed0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-152f5e97-5c26-4981-a139-bbf8bbaeed0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7676630-1ec8-4792-9445-e39d67084f7b {
  text-align: center;
}
@media (max-width: 767px){#s-b7676630-1ec8-4792-9445-e39d67084f7b {
  padding-top: 10px;
}
}






  #s-b7676630-1ec8-4792-9445-e39d67084f7b img.shogun-image {
    

    
    
    
  }


#s-b7676630-1ec8-4792-9445-e39d67084f7b .shogun-image-content {
  
    align-items: center;
  
}

#s-4bad5644-6b5d-4aa2-9a46-83e9f5fe4478 {
  min-height: 50px;
}








#s-4bad5644-6b5d-4aa2-9a46-83e9f5fe4478 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4bad5644-6b5d-4aa2-9a46-83e9f5fe4478.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-178964f6-6ff6-491b-b460-cdf9789f1a17"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-9be4cda3-7bb6-40aa-8834-7c4127e006ab {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-9be4cda3-7bb6-40aa-8834-7c4127e006ab .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-9be4cda3-7bb6-40aa-8834-7c4127e006ab table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-9be4cda3-7bb6-40aa-8834-7c4127e006ab 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-9be4cda3-7bb6-40aa-8834-7c4127e006ab td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-9be4cda3-7bb6-40aa-8834-7c4127e006ab td.shogun-table-column, #s-9be4cda3-7bb6-40aa-8834-7c4127e006ab td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-c2c8d095-d1a1-4db9-bf6c-e775de2f3b53 {
  text-align: center;
}







  #s-c2c8d095-d1a1-4db9-bf6c-e775de2f3b53 img.shogun-image {
    

    
    
    
  }


#s-c2c8d095-d1a1-4db9-bf6c-e775de2f3b53 .shogun-image-content {
  
    align-items: center;
  
}

#s-74f611dd-6271-49b6-a322-f0cdcc38778e {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-74f611dd-6271-49b6-a322-f0cdcc38778e {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-74f611dd-6271-49b6-a322-f0cdcc38778e {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-74f611dd-6271-49b6-a322-f0cdcc38778e {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-74f611dd-6271-49b6-a322-f0cdcc38778e {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-74f611dd-6271-49b6-a322-f0cdcc38778e .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-74f611dd-6271-49b6-a322-f0cdcc38778e .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-fcc2b683-39f8-45a5-8a20-9043a76d55be {
  text-align: center;
}







  #s-fcc2b683-39f8-45a5-8a20-9043a76d55be img.shogun-image {
    

    
    
    
  }


#s-fcc2b683-39f8-45a5-8a20-9043a76d55be .shogun-image-content {
  
    align-items: center;
  
}

#s-c700010b-e6b8-4e24-ada2-e6050405d20f {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c700010b-e6b8-4e24-ada2-e6050405d20f {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-c700010b-e6b8-4e24-ada2-e6050405d20f {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-c700010b-e6b8-4e24-ada2-e6050405d20f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-c700010b-e6b8-4e24-ada2-e6050405d20f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c700010b-e6b8-4e24-ada2-e6050405d20f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-c700010b-e6b8-4e24-ada2-e6050405d20f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-8227b36c-7214-4ec2-a389-655aad5376e2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8227b36c-7214-4ec2-a389-655aad5376e2 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-8227b36c-7214-4ec2-a389-655aad5376e2 .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-8227b36c-7214-4ec2-a389-655aad5376e2 .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-8227b36c-7214-4ec2-a389-655aad5376e2 .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-0d087f94-4df5-407a-b126-41ac2910fbfc {
  min-height: 50px;
}








#s-0d087f94-4df5-407a-b126-41ac2910fbfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d087f94-4df5-407a-b126-41ac2910fbfc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-14073d1b-f98d-4928-8781-6c4ccc46da6b {
  margin-top: 5px;
margin-bottom: -2%;
padding-right: 600px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-14073d1b-f98d-4928-8781-6c4ccc46da6b {
  padding-right: 50%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-14073d1b-f98d-4928-8781-6c4ccc46da6b {
  margin-bottom: -3%;
padding-right: 50%;
}
}@media (max-width: 767px){#s-14073d1b-f98d-4928-8781-6c4ccc46da6b {
  margin-top: 20px;
margin-bottom: -4%;
padding-right: 20%;
}
}






  #s-14073d1b-f98d-4928-8781-6c4ccc46da6b img.shogun-image {
    

    
    
    
  }


#s-14073d1b-f98d-4928-8781-6c4ccc46da6b .shogun-image-content {
  
    align-items: center;
  
}

#s-cdee0bff-c22c-43da-8b6d-a7264e4665dd {
  margin-top: 8px;
}

@media (min-width: 0px) {
[id="s-cdee0bff-c22c-43da-8b6d-a7264e4665dd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-cdee0bff-c22c-43da-8b6d-a7264e4665dd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cdee0bff-c22c-43da-8b6d-a7264e4665dd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cdee0bff-c22c-43da-8b6d-a7264e4665dd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-311e84f8-2363-4f71-afe0-5ef54f1aab21 {
  text-align: center;
}







  #s-311e84f8-2363-4f71-afe0-5ef54f1aab21 img.shogun-image {
    

    
    
    
  }


#s-311e84f8-2363-4f71-afe0-5ef54f1aab21 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-2f72de80-3b96-4c4c-94db-aaf0338bb23f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2f72de80-3b96-4c4c-94db-aaf0338bb23f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2f72de80-3b96-4c4c-94db-aaf0338bb23f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f72de80-3b96-4c4c-94db-aaf0338bb23f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b96eebd1-5d82-4754-bb42-2399e94ad882 {
  max-width: 100%;
text-align: center;
}







  #s-b96eebd1-5d82-4754-bb42-2399e94ad882 img.shogun-image {
    

    
    
    
  }


#s-b96eebd1-5d82-4754-bb42-2399e94ad882 .shogun-image-content {
  
    align-items: center;
  
}

#s-13c61eac-7819-49b0-a81c-cb77d33015df {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-13c61eac-7819-49b0-a81c-cb77d33015df {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-13c61eac-7819-49b0-a81c-cb77d33015df {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-13c61eac-7819-49b0-a81c-cb77d33015df {
  padding-top: 50%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-13c61eac-7819-49b0-a81c-cb77d33015df {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-13c61eac-7819-49b0-a81c-cb77d33015df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  line-height: 1em;
  
  
}


@media (min-width: 1200px){#s-13c61eac-7819-49b0-a81c-cb77d33015df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-13c61eac-7819-49b0-a81c-cb77d33015df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-13c61eac-7819-49b0-a81c-cb77d33015df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-13c61eac-7819-49b0-a81c-cb77d33015df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-89b70d3e-4c76-4c06-b3c8-80dfdb3283e7 {
  text-align: center;
}







  #s-89b70d3e-4c76-4c06-b3c8-80dfdb3283e7 img.shogun-image {
    

    
    
    
  }


#s-89b70d3e-4c76-4c06-b3c8-80dfdb3283e7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e8e4ce86-468c-4020-b472-acb971202cf0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e8e4ce86-468c-4020-b472-acb971202cf0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e8e4ce86-468c-4020-b472-acb971202cf0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8e4ce86-468c-4020-b472-acb971202cf0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f4933393-c38c-4eff-8097-fd6558967920 {
  max-width: 100%;
text-align: center;
}







  #s-f4933393-c38c-4eff-8097-fd6558967920 img.shogun-image {
    

    
    
    
  }


#s-f4933393-c38c-4eff-8097-fd6558967920 .shogun-image-content {
  
    align-items: center;
  
}

#s-0b6c2b60-1c22-430d-8754-81027213e5df {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-0b6c2b60-1c22-430d-8754-81027213e5df {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0b6c2b60-1c22-430d-8754-81027213e5df {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0b6c2b60-1c22-430d-8754-81027213e5df {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-0b6c2b60-1c22-430d-8754-81027213e5df {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-0b6c2b60-1c22-430d-8754-81027213e5df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-0b6c2b60-1c22-430d-8754-81027213e5df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0b6c2b60-1c22-430d-8754-81027213e5df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0b6c2b60-1c22-430d-8754-81027213e5df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-0b6c2b60-1c22-430d-8754-81027213e5df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-69a7e67c-c3e4-4d36-a398-ab54a6ea86b4 {
  text-align: center;
}







  #s-69a7e67c-c3e4-4d36-a398-ab54a6ea86b4 img.shogun-image {
    

    
    
    
  }


#s-69a7e67c-c3e4-4d36-a398-ab54a6ea86b4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-a4dfe288-d3a5-46a8-a83e-105d82872ae7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a4dfe288-d3a5-46a8-a83e-105d82872ae7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a4dfe288-d3a5-46a8-a83e-105d82872ae7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a4dfe288-d3a5-46a8-a83e-105d82872ae7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8b94a01b-b48b-4629-b9e1-5d9add885316 {
  max-width: 100%;
text-align: center;
}







  #s-8b94a01b-b48b-4629-b9e1-5d9add885316 img.shogun-image {
    

    
    
    
  }


#s-8b94a01b-b48b-4629-b9e1-5d9add885316 .shogun-image-content {
  
    align-items: center;
  
}

#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-83dca78a-d44b-4f25-9ac6-82cf88106ab7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-b1816c67-d876-47dc-b893-f08f00728239 {
  text-align: center;
}







  #s-b1816c67-d876-47dc-b893-f08f00728239 img.shogun-image {
    

    
    
    
  }


#s-b1816c67-d876-47dc-b893-f08f00728239 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-771f5d44-4764-4e5f-83e1-a6a0fa2b7e77"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-771f5d44-4764-4e5f-83e1-a6a0fa2b7e77"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-771f5d44-4764-4e5f-83e1-a6a0fa2b7e77"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-771f5d44-4764-4e5f-83e1-a6a0fa2b7e77"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c91f1d2f-79b9-47dd-aecd-ee64b7e3ce6a {
  max-width: 100%;
text-align: center;
}
@media (max-width: 767px){#s-c91f1d2f-79b9-47dd-aecd-ee64b7e3ce6a {
  max-width: 100%;
}
}






  #s-c91f1d2f-79b9-47dd-aecd-ee64b7e3ce6a img.shogun-image {
    

    
    
    
  }


#s-c91f1d2f-79b9-47dd-aecd-ee64b7e3ce6a .shogun-image-content {
  
    align-items: center;
  
}

#s-86a10060-46e0-4009-b8dd-87b3092cda81 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-86a10060-46e0-4009-b8dd-87b3092cda81 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-86a10060-46e0-4009-b8dd-87b3092cda81 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-c0cdd19e-3cc0-4e52-abf5-b0f2d5f3e4c4 {
  text-align: center;
}







  #s-c0cdd19e-3cc0-4e52-abf5-b0f2d5f3e4c4 img.shogun-image {
    

    
    
    
  }


#s-c0cdd19e-3cc0-4e52-abf5-b0f2d5f3e4c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-0347be8e-d1ee-4980-8dee-d7c9d58fab91 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-0347be8e-d1ee-4980-8dee-d7c9d58fab91 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-0347be8e-d1ee-4980-8dee-d7c9d58fab91"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-206e27d3-8b48-460f-b59a-87ffbf1998a6 {
  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-206e27d3-8b48-460f-b59a-87ffbf1998a6 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-206e27d3-8b48-460f-b59a-87ffbf1998a6 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-206e27d3-8b48-460f-b59a-87ffbf1998a6 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-206e27d3-8b48-460f-b59a-87ffbf1998a6 img.shogun-image {
    

    
    
    
  }


#s-206e27d3-8b48-460f-b59a-87ffbf1998a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-24100827-80f2-41f9-b337-8939c67706a6 {
  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-24100827-80f2-41f9-b337-8939c67706a6 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-24100827-80f2-41f9-b337-8939c67706a6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-24100827-80f2-41f9-b337-8939c67706a6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-e19f62a4-2fa7-436b-9f6d-b4b57b4132f3 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-e19f62a4-2fa7-436b-9f6d-b4b57b4132f3 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-237074dd-2a8c-49ef-ac8e-27cf9c6e36b4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e8ce170c-70c4-4ce4-b41c-94c9a898936d {
  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-e8ce170c-70c4-4ce4-b41c-94c9a898936d {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e8ce170c-70c4-4ce4-b41c-94c9a898936d {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-e8ce170c-70c4-4ce4-b41c-94c9a898936d {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-e8ce170c-70c4-4ce4-b41c-94c9a898936d img.shogun-image {
    

    
    
    
  }


#s-e8ce170c-70c4-4ce4-b41c-94c9a898936d .shogun-image-content {
  
    align-items: center;
  
}

#s-6ae94c64-a903-4336-b5eb-cae35401b7ba {
  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-6ae94c64-a903-4336-b5eb-cae35401b7ba {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-6ae94c64-a903-4336-b5eb-cae35401b7ba .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-6ae94c64-a903-4336-b5eb-cae35401b7ba .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-580bfa0c-b01f-40a0-8d86-758a8af74610 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-580bfa0c-b01f-40a0-8d86-758a8af74610 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-53d74893-2c82-44f5-af0a-e23870fd0f69 {
  text-align: center;
}







  #s-53d74893-2c82-44f5-af0a-e23870fd0f69 img.shogun-image {
    

    
    
    
  }


#s-53d74893-2c82-44f5-af0a-e23870fd0f69 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8e5c922-8fda-4923-b276-5cb44647f9b3 {
  border-style: solid;
margin-top: 4px;
margin-bottom: 4px;
padding-left: 20px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-radius: 15px;
text-align: center;
}
@media (max-width: 767px){#s-d8e5c922-8fda-4923-b276-5cb44647f9b3 {
  padding-left: 8px;
padding-right: 8px;
}
}






  #s-d8e5c922-8fda-4923-b276-5cb44647f9b3 img.shogun-image {
    

    
    
    
  }


#s-d8e5c922-8fda-4923-b276-5cb44647f9b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e035f39e-09fc-41d4-80ff-83580ecc25cf {
  padding-left: 20px;
padding-right: 20px;
}

#s-6db3889a-9547-4d09-b9ae-df9b30254ef1 {
  padding-left: 100px;
padding-right: 100px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6db3889a-9547-4d09-b9ae-df9b30254ef1 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-6db3889a-9547-4d09-b9ae-df9b30254ef1 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-6db3889a-9547-4d09-b9ae-df9b30254ef1 img.shogun-image {
    

    
    
    
  }


#s-6db3889a-9547-4d09-b9ae-df9b30254ef1 .shogun-image-content {
  
    align-items: center;
  
}

#s-648271b8-412d-4b10-b78b-2517c36716e9 {
  text-align: center;
}







  #s-648271b8-412d-4b10-b78b-2517c36716e9 img.shogun-image {
    

    
    
    
  }


#s-648271b8-412d-4b10-b78b-2517c36716e9 .shogun-image-content {
  
    align-items: center;
  
}

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

}

@media (min-width: 768px) {
[id="s-b3781377-e647-465a-a643-c3ff5621680f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-b3781377-e647-465a-a643-c3ff5621680f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-b3781377-e647-465a-a643-c3ff5621680f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-61bf661a-b05b-4ae0-b770-699ae8e0c148 {
  text-align: center;
}
@media (max-width: 767px){#s-61bf661a-b05b-4ae0-b770-699ae8e0c148 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-61bf661a-b05b-4ae0-b770-699ae8e0c148 .shogun-image-content {
  
    align-items: center;
  
}

#s-84be7591-c859-4c9f-b47e-9f371aeffd8b {
  text-align: center;
}
@media (max-width: 767px){#s-84be7591-c859-4c9f-b47e-9f371aeffd8b {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-84be7591-c859-4c9f-b47e-9f371aeffd8b .shogun-image-content {
  
    align-items: center;
  
}

#s-bba38de8-07bd-49e1-9ee0-ac475c9e0704 {
  min-height: 50px;
}








#s-bba38de8-07bd-49e1-9ee0-ac475c9e0704 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bba38de8-07bd-49e1-9ee0-ac475c9e0704.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc4d1d4d-3120-4260-9ab3-8244e17526ac {
  text-align: center;
background-color: rgba(247, 245, 239, 1);
}







  #s-fc4d1d4d-3120-4260-9ab3-8244e17526ac img.shogun-image {
    

    
    
    
  }


#s-fc4d1d4d-3120-4260-9ab3-8244e17526ac .shogun-image-content {
  
    align-items: center;
  
}

#s-52d00efa-f7c2-4bba-b954-5f4432b79d63 {
  padding-top: 70px;
text-align: center;
}
@media (max-width: 767px){#s-52d00efa-f7c2-4bba-b954-5f4432b79d63 {
  padding-top: 16px;
}
}
#s-52d00efa-f7c2-4bba-b954-5f4432b79d63 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 50px;
  
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-52d00efa-f7c2-4bba-b954-5f4432b79d63 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-52d00efa-f7c2-4bba-b954-5f4432b79d63 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}


}
#s-eccf858e-9f13-4069-91ac-a7929846e718 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-eccf858e-9f13-4069-91ac-a7929846e718 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eccf858e-9f13-4069-91ac-a7929846e718.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e5b5e9a1-ddfd-4fe2-9052-2f29db243125 {
  text-align: center;
}







  #s-e5b5e9a1-ddfd-4fe2-9052-2f29db243125 img.shogun-image {
    

    
    
    
  }


#s-e5b5e9a1-ddfd-4fe2-9052-2f29db243125 .shogun-image-content {
  
    align-items: center;
  
}

#s-580dbf02-266f-42d1-bf12-21f8cae065ab {
  margin-left: 90px;
margin-right: 90px;
}
@media (max-width: 767px){#s-580dbf02-266f-42d1-bf12-21f8cae065ab {
  margin-left: 40px;
margin-right: 40px;
}
}
#s-a0e60b01-e69a-469b-bbb6-38aeb63190c5 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-a0e60b01-e69a-469b-bbb6-38aeb63190c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0e60b01-e69a-469b-bbb6-38aeb63190c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-447b15a8-b677-447d-8b3c-9bd78ad10c25 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
text-align: center;
}







  #s-447b15a8-b677-447d-8b3c-9bd78ad10c25 img.shogun-image {
    

    
    
    
  }


#s-447b15a8-b677-447d-8b3c-9bd78ad10c25 .shogun-image-content {
  
    align-items: center;
  
}

#s-1208ec07-5787-4404-b000-ed51e1ee93be {
  margin-top: 14px;
text-align: center;
}







  #s-1208ec07-5787-4404-b000-ed51e1ee93be img.shogun-image {
    

    
    
    
  }


#s-1208ec07-5787-4404-b000-ed51e1ee93be .shogun-image-content {
  
    align-items: center;
  
}

#s-e67e4a4e-9278-4963-97f9-191f3d2865b3 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-e67e4a4e-9278-4963-97f9-191f3d2865b3 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-e67e4a4e-9278-4963-97f9-191f3d2865b3 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-e67e4a4e-9278-4963-97f9-191f3d2865b3 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-be07afb3-513c-4644-9520-a53e3a948d24 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-be07afb3-513c-4644-9520-a53e3a948d24 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-be07afb3-513c-4644-9520-a53e3a948d24 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-be07afb3-513c-4644-9520-a53e3a948d24 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-7f60d09a-0ffe-4ecd-bac7-d45fe4c4e170 {
  min-height: 50px;
}








#s-7f60d09a-0ffe-4ecd-bac7-d45fe4c4e170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f60d09a-0ffe-4ecd-bac7-d45fe4c4e170.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-99613be7-b258-4fde-b774-9da77930265d {
  min-height: 50px;
}








#s-99613be7-b258-4fde-b774-9da77930265d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99613be7-b258-4fde-b774-9da77930265d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88910f65-24f9-4954-8254-05aeb0a6004f {
  text-align: center;
}







  #s-88910f65-24f9-4954-8254-05aeb0a6004f img.shogun-image {
    

    
    
    
  }


#s-88910f65-24f9-4954-8254-05aeb0a6004f .shogun-image-content {
  
    align-items: center;
  
}

#s-c88091ab-50f9-4676-8c3e-f387aba54aed {
  min-height: 50px;
}








#s-c88091ab-50f9-4676-8c3e-f387aba54aed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c88091ab-50f9-4676-8c3e-f387aba54aed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04f762bf-c6f4-491d-abdc-29e82cc2c204 {
  text-align: center;
}







  #s-04f762bf-c6f4-491d-abdc-29e82cc2c204 img.shogun-image {
    

    
    
    
  }


#s-04f762bf-c6f4-491d-abdc-29e82cc2c204 .shogun-image-content {
  
    align-items: center;
  
}

#s-0848e8ab-2e7e-42db-ad6a-4a7be4140e25 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-0848e8ab-2e7e-42db-ad6a-4a7be4140e25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0848e8ab-2e7e-42db-ad6a-4a7be4140e25.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a4e461f-8a32-40b1-8072-10adcaa64786 {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-6a4e461f-8a32-40b1-8072-10adcaa64786 .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-6a4e461f-8a32-40b1-8072-10adcaa64786 .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-69fcb7ee-1388-4dcb-a805-ea1f28262cf3 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-69fcb7ee-1388-4dcb-a805-ea1f28262cf3 img.shogun-image {
    

    
    
    
  }


#s-69fcb7ee-1388-4dcb-a805-ea1f28262cf3 .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}
