.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-44c79be3-8599-478b-bc6c-48e53bb28c0b {
  min-height: 50px;
}








#s-44c79be3-8599-478b-bc6c-48e53bb28c0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44c79be3-8599-478b-bc6c-48e53bb28c0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdf2bb02-5612-4e8e-8cc1-53373f6ac04f {
  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-fdf2bb02-5612-4e8e-8cc1-53373f6ac04f {
  
}
}







#s-fdf2bb02-5612-4e8e-8cc1-53373f6ac04f > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-fdf2bb02-5612-4e8e-8cc1-53373f6ac04f.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-ea99b2aa-5222-4b7b-ae92-93d3ed635c2c {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-ea99b2aa-5222-4b7b-ae92-93d3ed635c2c {
  
}
}






  #s-ea99b2aa-5222-4b7b-ae92-93d3ed635c2c img.shogun-image {
    

    
    
    
  }


#s-ea99b2aa-5222-4b7b-ae92-93d3ed635c2c .shogun-image-content {
  
    align-items: center;
  
}

#s-83599b2c-b6ab-4df0-a947-559251b91743 {
  min-height: 50px;
background-color: rgba(178, 236, 239, 1);
}








#s-83599b2c-b6ab-4df0-a947-559251b91743 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83599b2c-b6ab-4df0-a947-559251b91743.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31e37aa9-14ce-4954-8c05-c32692fe8d7e {
  min-height: 50px;
}








#s-31e37aa9-14ce-4954-8c05-c32692fe8d7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31e37aa9-14ce-4954-8c05-c32692fe8d7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-360050a8-0136-4e56-a71a-5a88b1af679a {
  min-height: 50px;
}








#s-360050a8-0136-4e56-a71a-5a88b1af679a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-360050a8-0136-4e56-a71a-5a88b1af679a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a2af602d-31f0-48dd-9380-9942d4d1de96 {
  text-align: center;
}







  #s-a2af602d-31f0-48dd-9380-9942d4d1de96 img.shogun-image {
    

    
    
    
  }


#s-a2af602d-31f0-48dd-9380-9942d4d1de96 .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-1aee0990-d492-43fb-ac75-9023232ee3bf {
  text-align: center;
}
@media (max-width: 767px){#s-1aee0990-d492-43fb-ac75-9023232ee3bf {
  margin-bottom: -10px;
}
}
#s-1aee0990-d492-43fb-ac75-9023232ee3bf .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-1aee0990-d492-43fb-ac75-9023232ee3bf .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-1aee0990-d492-43fb-ac75-9023232ee3bf .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.2em;
  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-01bb6c2b-4b11-4e52-965d-9debfa40ee67 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-01bb6c2b-4b11-4e52-965d-9debfa40ee67 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-01bb6c2b-4b11-4e52-965d-9debfa40ee67 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-01bb6c2b-4b11-4e52-965d-9debfa40ee67 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-01bb6c2b-4b11-4e52-965d-9debfa40ee67 {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-c7cbb341-f8b8-4385-a0ea-ca292713900e {
  text-align: center;
}







  #s-c7cbb341-f8b8-4385-a0ea-ca292713900e img.shogun-image {
    

    
    
    
  }


#s-c7cbb341-f8b8-4385-a0ea-ca292713900e .shogun-image-content {
  
    align-items: center;
  
}

#s-431abd40-da54-483d-814e-bd4a60f7473a {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-431abd40-da54-483d-814e-bd4a60f7473a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-431abd40-da54-483d-814e-bd4a60f7473a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2bcd8ee6-75bb-4cd8-901e-c413662f00ca {
  text-align: center;
}







  #s-2bcd8ee6-75bb-4cd8-901e-c413662f00ca img.shogun-image {
    

    
    
    
  }


#s-2bcd8ee6-75bb-4cd8-901e-c413662f00ca .shogun-image-content {
  
    align-items: center;
  
}

#s-ac30ac43-e22d-48f7-a553-d7fdca842f4b {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(178, 236, 238, 1);
}








#s-ac30ac43-e22d-48f7-a553-d7fdca842f4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac30ac43-e22d-48f7-a553-d7fdca842f4b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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


}
#s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 img.shogun-image {
    

    
    
    
  }


#s-6e8a1522-353c-4f9a-9c6e-56c83eda7fa2 .shogun-image-content {
  
    align-items: center;
  
}

#s-6924787f-e760-436d-86d2-c374976712c5 {
  text-align: center;
}







  #s-6924787f-e760-436d-86d2-c374976712c5 img.shogun-image {
    

    
    
    
  }


#s-6924787f-e760-436d-86d2-c374976712c5 .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-1a8848da-3b8f-4c0f-9b0e-6d315493b460 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1a8848da-3b8f-4c0f-9b0e-6d315493b460"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-aff0f025-a408-41ef-a5c0-7a67f7aa9924 {
  text-align: center;
}







  #s-aff0f025-a408-41ef-a5c0-7a67f7aa9924 img.shogun-image {
    

    
    
    
  }


#s-aff0f025-a408-41ef-a5c0-7a67f7aa9924 .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-a73d5d72-6a1a-4345-98a2-df2be10665b7 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-a73d5d72-6a1a-4345-98a2-df2be10665b7 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-a73d5d72-6a1a-4345-98a2-df2be10665b7 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-a73d5d72-6a1a-4345-98a2-df2be10665b7 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-a73d5d72-6a1a-4345-98a2-df2be10665b7 td.shogun-table-column, #s-a73d5d72-6a1a-4345-98a2-df2be10665b7 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-984902a5-6c07-416c-865d-d7d0b80a6f02 {
  text-align: center;
}







  #s-984902a5-6c07-416c-865d-d7d0b80a6f02 img.shogun-image {
    

    
    
    
  }


#s-984902a5-6c07-416c-865d-d7d0b80a6f02 .shogun-image-content {
  
    align-items: center;
  
}

#s-880588b7-d642-439c-9f23-2e94da38afee {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-2e8941fd-1026-49a1-88d2-815fdb5c8480 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(71, 188, 198, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(71, 188, 198, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-2e8941fd-1026-49a1-88d2-815fdb5c8480 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2e8941fd-1026-49a1-88d2-815fdb5c8480 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-2e8941fd-1026-49a1-88d2-815fdb5c8480 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-2e8941fd-1026-49a1-88d2-815fdb5c8480 .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-2e8941fd-1026-49a1-88d2-815fdb5c8480 .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-2e8941fd-1026-49a1-88d2-815fdb5c8480 .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-7c52da2d-0a44-4f9b-a7b0-d1ee2a87fff4 {
  margin-bottom: -13px;
text-align: center;
}

#s-7c52da2d-0a44-4f9b-a7b0-d1ee2a87fff4 .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-7c52da2d-0a44-4f9b-a7b0-d1ee2a87fff4 .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-7c52da2d-0a44-4f9b-a7b0-d1ee2a87fff4 .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-19dca080-7726-4042-a17e-0ec0e78e9c88 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-19dca080-7726-4042-a17e-0ec0e78e9c88 {
  margin-top: 0px;
}
}






  #s-19dca080-7726-4042-a17e-0ec0e78e9c88 img.shogun-image {
    

    
    
    
  }


#s-19dca080-7726-4042-a17e-0ec0e78e9c88 .shogun-image-content {
  
    align-items: center;
  
}

#s-90c473de-528b-4d53-91e4-049dd9c0b3a3 {
  margin-bottom: 1%;
min-height: 50px;
}








#s-90c473de-528b-4d53-91e4-049dd9c0b3a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90c473de-528b-4d53-91e4-049dd9c0b3a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0adf5946-da4d-45b2-949f-7001cf3f3897 {
  text-align: center;
}







  #s-0adf5946-da4d-45b2-949f-7001cf3f3897 img.shogun-image {
    

    
    
    
  }


#s-0adf5946-da4d-45b2-949f-7001cf3f3897 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd7dad8a-15cb-41bf-ac10-042dfab5702e {
  margin-top: 5px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-cd7dad8a-15cb-41bf-ac10-042dfab5702e {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-cd7dad8a-15cb-41bf-ac10-042dfab5702e {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
}







#s-cd7dad8a-15cb-41bf-ac10-042dfab5702e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd7dad8a-15cb-41bf-ac10-042dfab5702e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-60ac9094-3031-4674-8556-cca078fed7de {
  border-color: rgba(0, 0, 0, 0);
border-style: solid;
}

#s-1d3d071f-d3a8-4d0f-afea-40ac3a8dd661 {
  min-height: 50px;
}








#s-1d3d071f-d3a8-4d0f-afea-40ac3a8dd661 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d3d071f-d3a8-4d0f-afea-40ac3a8dd661.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-402dab00-4313-41af-8caa-baedfe56e7ec {
  text-align: center;
}







  #s-402dab00-4313-41af-8caa-baedfe56e7ec img.shogun-image {
    

    
    
    
  }


#s-402dab00-4313-41af-8caa-baedfe56e7ec .shogun-image-content {
  
    align-items: center;
  
}

#s-c15f6c24-20c4-4a9c-ab81-9c1a8cd61f3d {
  min-height: 50px;
}








#s-c15f6c24-20c4-4a9c-ab81-9c1a8cd61f3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c15f6c24-20c4-4a9c-ab81-9c1a8cd61f3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e8dc7c6-5998-497e-bbbe-d25a9bad15e6 {
  text-align: center;
}







  #s-2e8dc7c6-5998-497e-bbbe-d25a9bad15e6 img.shogun-image {
    

    
    
    
  }


#s-2e8dc7c6-5998-497e-bbbe-d25a9bad15e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-155af9d2-c2e6-45c0-afa8-b4bf57f31786 {
  text-align: center;
}







  #s-155af9d2-c2e6-45c0-afa8-b4bf57f31786 img.shogun-image {
    

    
    
    
  }


#s-155af9d2-c2e6-45c0-afa8-b4bf57f31786 .shogun-image-content {
  
    align-items: center;
  
}

#s-053877ff-ed78-4148-a590-7554d3cce7f2 {
  text-align: center;
}







  #s-053877ff-ed78-4148-a590-7554d3cce7f2 img.shogun-image {
    

    
    
    
  }


#s-053877ff-ed78-4148-a590-7554d3cce7f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-6f30cb09-bab7-4b91-bd79-6e076eb69215 {
  min-height: 50px;
}








#s-6f30cb09-bab7-4b91-bd79-6e076eb69215 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6f30cb09-bab7-4b91-bd79-6e076eb69215.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23ceab51-892d-4d82-90ab-274f14ec930b {
  text-align: center;
}







  #s-23ceab51-892d-4d82-90ab-274f14ec930b img.shogun-image {
    

    
    
    
  }


#s-23ceab51-892d-4d82-90ab-274f14ec930b .shogun-image-content {
  
    align-items: center;
  
}

#s-86986474-8ab3-49a8-af9c-9894b0fd9829 {
  text-align: center;
}







  #s-86986474-8ab3-49a8-af9c-9894b0fd9829 img.shogun-image {
    

    
    
    
  }


#s-86986474-8ab3-49a8-af9c-9894b0fd9829 .shogun-image-content {
  
    align-items: center;
  
}

#s-63851779-a9d9-4f3f-b7fe-dce40544830e {
  min-height: 50px;
}








#s-63851779-a9d9-4f3f-b7fe-dce40544830e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63851779-a9d9-4f3f-b7fe-dce40544830e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-291fab7a-860b-49f1-a9b9-48c294ec7610 {
  text-align: center;
}







  #s-291fab7a-860b-49f1-a9b9-48c294ec7610 img.shogun-image {
    

    
    
    
  }


#s-291fab7a-860b-49f1-a9b9-48c294ec7610 .shogun-image-content {
  
    align-items: center;
  
}

#s-4114f936-5434-4077-9770-ddf4e9e9c717 {
  text-align: center;
}







  #s-4114f936-5434-4077-9770-ddf4e9e9c717 img.shogun-image {
    

    
    
    
  }


#s-4114f936-5434-4077-9770-ddf4e9e9c717 .shogun-image-content {
  
    align-items: center;
  
}

#s-527ac5fa-9200-4207-9498-7e1979cc712b {
  text-align: center;
}







  #s-527ac5fa-9200-4207-9498-7e1979cc712b img.shogun-image {
    

    
    
    
  }


#s-527ac5fa-9200-4207-9498-7e1979cc712b .shogun-image-content {
  
    align-items: center;
  
}

#s-2dfe014f-70b2-4063-baff-83eeb2ca5d7d {
  min-height: 50px;
}








#s-2dfe014f-70b2-4063-baff-83eeb2ca5d7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dfe014f-70b2-4063-baff-83eeb2ca5d7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c0ca8f6-1f55-4cc4-840a-2f2db18f18e9 {
  text-align: center;
}







  #s-3c0ca8f6-1f55-4cc4-840a-2f2db18f18e9 img.shogun-image {
    

    
    
    
  }


#s-3c0ca8f6-1f55-4cc4-840a-2f2db18f18e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-6e7ff8de-c918-460b-985f-00d9d185bb53 {
  min-height: 50px;
}








#s-6e7ff8de-c918-460b-985f-00d9d185bb53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e7ff8de-c918-460b-985f-00d9d185bb53.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3692076c-d9dc-491e-a2d0-aec8861b8603 {
  text-align: center;
}







  #s-3692076c-d9dc-491e-a2d0-aec8861b8603 img.shogun-image {
    

    
    
    
  }


#s-3692076c-d9dc-491e-a2d0-aec8861b8603 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5c28f62-5307-455a-ac88-512e9b46f3ed {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-a5c28f62-5307-455a-ac88-512e9b46f3ed {
  padding-top: 10px;
}
}






  #s-a5c28f62-5307-455a-ac88-512e9b46f3ed img.shogun-image {
    

    
    
    
  }


#s-a5c28f62-5307-455a-ac88-512e9b46f3ed .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-26e05cb8-ef85-494c-a307-cc056055069c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-150b2e5d-b430-457e-b425-e34c077a508e {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-150b2e5d-b430-457e-b425-e34c077a508e .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-150b2e5d-b430-457e-b425-e34c077a508e table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-150b2e5d-b430-457e-b425-e34c077a508e 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-150b2e5d-b430-457e-b425-e34c077a508e td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-150b2e5d-b430-457e-b425-e34c077a508e td.shogun-table-column, #s-150b2e5d-b430-457e-b425-e34c077a508e td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-019af6f1-0ec3-41f0-8945-2476015ec1c4 {
  text-align: center;
}







  #s-019af6f1-0ec3-41f0-8945-2476015ec1c4 img.shogun-image {
    

    
    
    
  }


#s-019af6f1-0ec3-41f0-8945-2476015ec1c4 .shogun-image-content {
  
    align-items: center;
  
}

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


}
#s-691db44f-02f2-46c1-88ae-071d98d745de {
  text-align: center;
}







  #s-691db44f-02f2-46c1-88ae-071d98d745de img.shogun-image {
    

    
    
    
  }


#s-691db44f-02f2-46c1-88ae-071d98d745de .shogun-image-content {
  
    align-items: center;
  
}

#s-ea116703-3478-4da9-8eb4-92e1df276149 {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ea116703-3478-4da9-8eb4-92e1df276149 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-ea116703-3478-4da9-8eb4-92e1df276149 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-ea116703-3478-4da9-8eb4-92e1df276149 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-ea116703-3478-4da9-8eb4-92e1df276149 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (max-width: 767px){#s-ea116703-3478-4da9-8eb4-92e1df276149 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-762a9bb7-5885-448b-83b6-95f687e32d2e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-762a9bb7-5885-448b-83b6-95f687e32d2e {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-762a9bb7-5885-448b-83b6-95f687e32d2e .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-762a9bb7-5885-448b-83b6-95f687e32d2e .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-762a9bb7-5885-448b-83b6-95f687e32d2e .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-80c5e873-daa3-4535-808e-8ce54c26f1ff {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-80c5e873-daa3-4535-808e-8ce54c26f1ff img.shogun-image {
    

    
    
    
  }


#s-80c5e873-daa3-4535-808e-8ce54c26f1ff .shogun-image-content {
  
    align-items: center;
  
}

#s-33a77eb5-5d13-4c46-a232-d33933e2dde8 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-33a77eb5-5d13-4c46-a232-d33933e2dde8 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-33a77eb5-5d13-4c46-a232-d33933e2dde8"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-56b807c0-671d-4b2e-ba01-f4eecddf30ae {
  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-56b807c0-671d-4b2e-ba01-f4eecddf30ae {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-56b807c0-671d-4b2e-ba01-f4eecddf30ae {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-56b807c0-671d-4b2e-ba01-f4eecddf30ae {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-56b807c0-671d-4b2e-ba01-f4eecddf30ae img.shogun-image {
    

    
    
    
  }


#s-56b807c0-671d-4b2e-ba01-f4eecddf30ae .shogun-image-content {
  
    align-items: center;
  
}

#s-d1e1aa92-f7ae-4db9-8f26-984c3cbb3133 {
  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-d1e1aa92-f7ae-4db9-8f26-984c3cbb3133 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-d1e1aa92-f7ae-4db9-8f26-984c3cbb3133 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-d1e1aa92-f7ae-4db9-8f26-984c3cbb3133 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-70f7e5b7-87d4-424b-924b-1f7a96b3c744 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-70f7e5b7-87d4-424b-924b-1f7a96b3c744 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-ebb20999-c7e6-49ef-8f30-0f2a16d18c26"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 {
  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-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 img.shogun-image {
    

    
    
    
  }


#s-cb5ed34a-d51b-4dc9-8e03-b4fc327c0569 .shogun-image-content {
  
    align-items: center;
  
}

#s-7957d91d-384b-4a92-a90c-2c91ed48793c {
  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-7957d91d-384b-4a92-a90c-2c91ed48793c {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-7957d91d-384b-4a92-a90c-2c91ed48793c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-7957d91d-384b-4a92-a90c-2c91ed48793c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-4a264644-22f5-4f4b-8e6e-0bc84a20e518 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-4a264644-22f5-4f4b-8e6e-0bc84a20e518 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-00584ec8-f864-463a-85d5-71b9dd68e051 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-00584ec8-f864-463a-85d5-71b9dd68e051 img.shogun-image {
    

    
    
    
  }


#s-00584ec8-f864-463a-85d5-71b9dd68e051 .shogun-image-content {
  
    align-items: center;
  
}

#s-069acace-701a-45b0-95a5-2b4c845ccefd {
  text-align: center;
}







  #s-069acace-701a-45b0-95a5-2b4c845ccefd img.shogun-image {
    

    
    
    
  }


#s-069acace-701a-45b0-95a5-2b4c845ccefd .shogun-image-content {
  
    align-items: center;
  
}

#s-86a9fe5f-6208-4fc4-937a-411fa32253c0 {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-86a9fe5f-6208-4fc4-937a-411fa32253c0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-86a9fe5f-6208-4fc4-937a-411fa32253c0 {
  
}
}@media (max-width: 767px){#s-86a9fe5f-6208-4fc4-937a-411fa32253c0 {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-86a9fe5f-6208-4fc4-937a-411fa32253c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86a9fe5f-6208-4fc4-937a-411fa32253c0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-86a9fe5f-6208-4fc4-937a-411fa32253c0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-86a9fe5f-6208-4fc4-937a-411fa32253c0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-f66f8efe-932c-4486-ba33-1f356ec74a21 {
  text-align: center;
}
@media (max-width: 767px){#s-f66f8efe-932c-4486-ba33-1f356ec74a21 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-f66f8efe-932c-4486-ba33-1f356ec74a21 .shogun-image-content {
  
    align-items: center;
  
}

#s-a780d6d2-131a-434a-bbb7-9a8a273aefb2 {
  text-align: center;
}
@media (max-width: 767px){#s-a780d6d2-131a-434a-bbb7-9a8a273aefb2 {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-a780d6d2-131a-434a-bbb7-9a8a273aefb2 .shogun-image-content {
  
    align-items: center;
  
}

#s-ca7d0576-db5d-4ae1-9a1a-906c4ad7770f {
  margin-top: 14px;
text-align: center;
}







  #s-ca7d0576-db5d-4ae1-9a1a-906c4ad7770f img.shogun-image {
    

    
    
    
  }


#s-ca7d0576-db5d-4ae1-9a1a-906c4ad7770f .shogun-image-content {
  
    align-items: center;
  
}

#s-e2cc42e1-8356-46fa-886d-23a6d44ed3b9 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-e2cc42e1-8356-46fa-886d-23a6d44ed3b9 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-e2cc42e1-8356-46fa-886d-23a6d44ed3b9 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-e2cc42e1-8356-46fa-886d-23a6d44ed3b9 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-8bd7baf0-ae2a-4cfb-8363-e54aafdedc7b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8bd7baf0-ae2a-4cfb-8363-e54aafdedc7b {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-8bd7baf0-ae2a-4cfb-8363-e54aafdedc7b .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-8bd7baf0-ae2a-4cfb-8363-e54aafdedc7b .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-f06ae156-7449-4c8b-a30a-31be5b879608 {
  min-height: 50px;
}








#s-f06ae156-7449-4c8b-a30a-31be5b879608 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f06ae156-7449-4c8b-a30a-31be5b879608.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6b80de66-6125-4677-af9f-3ec229f953cb {
  text-align: center;
}







  #s-6b80de66-6125-4677-af9f-3ec229f953cb img.shogun-image {
    

    
    
    
  }


#s-6b80de66-6125-4677-af9f-3ec229f953cb .shogun-image-content {
  
    align-items: center;
  
}

#s-8c4a20d7-6154-40cb-83af-fa0a9277538d {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-8c4a20d7-6154-40cb-83af-fa0a9277538d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c4a20d7-6154-40cb-83af-fa0a9277538d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db391556-1586-44f9-86ea-33b379f19261 {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-db391556-1586-44f9-86ea-33b379f19261 .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-db391556-1586-44f9-86ea-33b379f19261 .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-d47d27f3-a2f7-439d-aa6f-93e735ef5828 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-d47d27f3-a2f7-439d-aa6f-93e735ef5828 img.shogun-image {
    

    
    
    
  }


#s-d47d27f3-a2f7-439d-aa6f-93e735ef5828 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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