.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-519d7fac-c014-4e76-b8ce-09be605907fc {
  padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-519d7fac-c014-4e76-b8ce-09be605907fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-519d7fac-c014-4e76-b8ce-09be605907fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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;
}

@media (min-width: 0px) {
[id="s-eef5b789-b7df-4868-aa92-8a20789dfec2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eef5b789-b7df-4868-aa92-8a20789dfec2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-eef5b789-b7df-4868-aa92-8a20789dfec2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-eef5b789-b7df-4868-aa92-8a20789dfec2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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-9f14fb4a-7816-4b34-a414-235919d45ae8 {
  text-align: center;
}







  #s-9f14fb4a-7816-4b34-a414-235919d45ae8 img.shogun-image {
    

    
    
    
  }


#s-9f14fb4a-7816-4b34-a414-235919d45ae8 .shogun-image-content {
  
    align-items: center;
  
}

.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-c5af5f7a-e3e8-4ebd-8925-6c832e043519 {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-0732a0e2-f366-497a-9520-689e50f17bbe {
  margin-top: 1px;
margin-left: 10px;
margin-bottom: 1px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-17d3ba91-7f3e-46bb-9e12-e8b0060fa3b8 {
  margin-top: 1px;
margin-left: 10px;
margin-bottom: 1px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-622ffe71-adb9-4ae1-9ce5-4780059d3747 {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-622ffe71-adb9-4ae1-9ce5-4780059d3747"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-622ffe71-adb9-4ae1-9ce5-4780059d3747"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-622ffe71-adb9-4ae1-9ce5-4780059d3747"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-622ffe71-adb9-4ae1-9ce5-4780059d3747"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-92daedd1-3641-4e3a-9818-89c913138daf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-92daedd1-3641-4e3a-9818-89c913138daf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-92daedd1-3641-4e3a-9818-89c913138daf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-92daedd1-3641-4e3a-9818-89c913138daf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-58bc8ea3-b51e-4678-b178-2e9587a00921 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-58bc8ea3-b51e-4678-b178-2e9587a00921 img.shogun-image {
    

    
    
    
  }


#s-58bc8ea3-b51e-4678-b178-2e9587a00921 .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-565d3395-76cf-491d-8135-1599ad2006ca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-565d3395-76cf-491d-8135-1599ad2006ca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-29aa7527-4184-4b5b-ba96-61c4c943e246 {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-0f164955-9bf1-4458-bfd5-feb4e8e2b8a4 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-0f164955-9bf1-4458-bfd5-feb4e8e2b8a4 img.shogun-image {
    

    
    
    
  }


#s-0f164955-9bf1-4458-bfd5-feb4e8e2b8a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c221f99-92fa-46dd-a0e0-e46807236a72 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c221f99-92fa-46dd-a0e0-e46807236a72 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-17603235-75fa-4c86-969c-19771fabbb1f {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-5c14ded0-c039-46fe-b3b6-b9cc20e6ac1d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c14ded0-c039-46fe-b3b6-b9cc20e6ac1d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5c14ded0-c039-46fe-b3b6-b9cc20e6ac1d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c14ded0-c039-46fe-b3b6-b9cc20e6ac1d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2c7cea50-96db-4866-8860-d09f60db5069 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-2c7cea50-96db-4866-8860-d09f60db5069 img.shogun-image {
    

    
    
    
  }


#s-2c7cea50-96db-4866-8860-d09f60db5069 .shogun-image-content {
  
    align-items: center;
  
}

#s-ccdd5a93-00c5-4ea2-969d-3cd11114aa55 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ccdd5a93-00c5-4ea2-969d-3cd11114aa55 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8a65f828-2d15-49e4-9ede-04730020f695 {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-f1d541b7-19bd-441e-a23a-ae9f89567392 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-f1d541b7-19bd-441e-a23a-ae9f89567392 img.shogun-image {
    

    
    
    
  }


#s-f1d541b7-19bd-441e-a23a-ae9f89567392 .shogun-image-content {
  
    align-items: center;
  
}

#s-c0ea1c01-c74d-4dfc-a25b-4e58449eea84 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c0ea1c01-c74d-4dfc-a25b-4e58449eea84 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ae039f84-2fe0-4862-bad5-2d0c0fb47ae1 {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-89e7838c-5c55-4888-a03f-e2bb755f7407 {
  padding-top: 10px;
min-height: 50px;
}








#s-89e7838c-5c55-4888-a03f-e2bb755f7407 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89e7838c-5c55-4888-a03f-e2bb755f7407.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bc06c20-0a0a-4613-a2c2-56681b379feb {
  padding-top: 25px;
padding-left: 10px;
padding-bottom: 25px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-0bc06c20-0a0a-4613-a2c2-56681b379feb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bc06c20-0a0a-4613-a2c2-56681b379feb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(235, 225, 225, 1);
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(235, 225, 225, 1);
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-120eed11-451d-4bfd-b24e-a154d386deb7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-0be01892-cd11-4048-b4d4-505f3ca8cc6e {
  margin-left: 10px;
margin-right: 10px;
padding-top: 20px;
}

#s-7cbce244-110e-4728-a1c5-638dfcd42bdc {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-45bdf074-a401-4b72-a0c7-e2dd8c6a58c0 {
  min-height: 50px;
}








#s-45bdf074-a401-4b72-a0c7-e2dd8c6a58c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45bdf074-a401-4b72-a0c7-e2dd8c6a58c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3ddc90d8-4145-474e-b0f0-a2f8c0a52a77 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-c0774ebe-d1bc-4b7d-9696-7236f24f7b99 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-630324d3-d7b1-422f-bec4-7b81b20ae80b {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-1af9cc77-b7e6-4e5c-b00f-dd717f0f303a {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-65abcf39-99f4-4785-96ad-e882b03c0da7 {
  padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
}

#s-2b37d515-aab4-4813-bbf1-a2c96648bdde {
  padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
}

.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-1e729322-2986-4be3-850c-a281776e18e6 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
}

#s-1e729322-2986-4be3-850c-a281776e18e6 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-1e729322-2986-4be3-850c-a281776e18e6 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-1e729322-2986-4be3-850c-a281776e18e6 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-1e729322-2986-4be3-850c-a281776e18e6 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-1e729322-2986-4be3-850c-a281776e18e6 td.shogun-table-column, #s-1e729322-2986-4be3-850c-a281776e18e6 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-a5f420a3-98bf-4c5f-95b1-d1bd2d8d3f3d {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-a044c298-dd8a-4d01-aa87-0e2fb39770e1 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-bf13fc98-3fac-4930-b087-d302118983cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf13fc98-3fac-4930-b087-d302118983cb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-bf13fc98-3fac-4930-b087-d302118983cb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf13fc98-3fac-4930-b087-d302118983cb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-93a2cec5-d177-42d2-b677-1eb58cd93868 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
text-align: center;
opacity: 1;
}







  #s-93a2cec5-d177-42d2-b677-1eb58cd93868 img.shogun-image {
    

    
    
    
  }


#s-93a2cec5-d177-42d2-b677-1eb58cd93868 .shogun-image-content {
  
    align-items: center;
  
}

#s-31be34d1-e4ab-4472-9c60-b8f4698d6348 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
text-align: center;
}







  #s-31be34d1-e4ab-4472-9c60-b8f4698d6348 img.shogun-image {
    

    
    
    
  }


#s-31be34d1-e4ab-4472-9c60-b8f4698d6348 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc3419c9-07e2-400b-83a9-cd2be344ad34 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
text-align: center;
opacity: 1;
}







  #s-fc3419c9-07e2-400b-83a9-cd2be344ad34 img.shogun-image {
    

    
    
    
  }


#s-fc3419c9-07e2-400b-83a9-cd2be344ad34 .shogun-image-content {
  
    align-items: center;
  
}

#s-8a08c646-e157-4c24-97b1-17d5e02b4e73 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-f9a43e0c-0b46-455a-b42a-8fb2a9c6244d {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-45665aa9-32c6-4d17-972b-d5e41b078a49 {
  margin-top: 20px;
margin-bottom: 30px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-45665aa9-32c6-4d17-972b-d5e41b078a49 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-11159f49-dac4-4276-9cc9-b289d71f4e87 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-11159f49-dac4-4276-9cc9-b289d71f4e87"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11159f49-dac4-4276-9cc9-b289d71f4e87"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-11159f49-dac4-4276-9cc9-b289d71f4e87"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-11159f49-dac4-4276-9cc9-b289d71f4e87"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3192beb2-5def-4b8b-bc75-1cb3d9e2db87 {
  margin-top: 20px;
}

#s-52cb4ad9-9d6e-429e-b6c7-9144a0eed6f3 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-52cb4ad9-9d6e-429e-b6c7-9144a0eed6f3 img.shogun-image {
    

    
    
    
  }


#s-52cb4ad9-9d6e-429e-b6c7-9144a0eed6f3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d0c8382-2091-4be8-8fc5-d27cc6780dc2 {
  margin-top: 20px;
}

#s-1f35eed9-9880-4532-b6e4-f576556b8711 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-1f35eed9-9880-4532-b6e4-f576556b8711 img.shogun-image {
    

    
    
    
  }


#s-1f35eed9-9880-4532-b6e4-f576556b8711 .shogun-image-content {
  
    align-items: center;
  
}

#s-e012a138-3d8a-4778-9832-ab463a0e9ceb {
  margin-top: 20px;
}

#s-a3e0423d-a945-481e-9313-405169dd48ef {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-a3e0423d-a945-481e-9313-405169dd48ef img.shogun-image {
    

    
    
    
  }


#s-a3e0423d-a945-481e-9313-405169dd48ef .shogun-image-content {
  
    align-items: center;
  
}

#s-9a3596b2-f51e-45c7-a11f-110656e73bee {
  margin-left: 10px;
margin-right: 10px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-9a3596b2-f51e-45c7-a11f-110656e73bee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a3596b2-f51e-45c7-a11f-110656e73bee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9a3596b2-f51e-45c7-a11f-110656e73bee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9a3596b2-f51e-45c7-a11f-110656e73bee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-27f279c8-0708-4fb1-90f4-fa54689d78e8 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-27f279c8-0708-4fb1-90f4-fa54689d78e8 img.shogun-image {
    

    
    
    
  }


#s-27f279c8-0708-4fb1-90f4-fa54689d78e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-5178c0c4-b5e3-47f1-b789-32ecadc35e69 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-5178c0c4-b5e3-47f1-b789-32ecadc35e69 img.shogun-image {
    

    
    
    
  }


#s-5178c0c4-b5e3-47f1-b789-32ecadc35e69 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6a88314-110b-43d9-b142-832ad8c4326a {
  margin-left: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-a6a88314-110b-43d9-b142-832ad8c4326a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a6a88314-110b-43d9-b142-832ad8c4326a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a6a88314-110b-43d9-b142-832ad8c4326a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a6a88314-110b-43d9-b142-832ad8c4326a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-04682d0e-6dd0-4e71-a97a-c13fd744aee2 {
  box-shadow:1px 1px 25px 5px rgba(168, 168, 168, 1);
margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
text-align: center;
}







  #s-04682d0e-6dd0-4e71-a97a-c13fd744aee2 img.shogun-image {
    

    
    
    
  }


#s-04682d0e-6dd0-4e71-a97a-c13fd744aee2 .shogun-image-content {
  
    align-items: center;
  
}

#s-06669023-27eb-40df-b1b7-cef273919eda {
  box-shadow:1px 1px 25px 5px rgba(168, 168, 168, 1);
margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
text-align: center;
}







  #s-06669023-27eb-40df-b1b7-cef273919eda img.shogun-image {
    

    
    
    
  }


#s-06669023-27eb-40df-b1b7-cef273919eda .shogun-image-content {
  
    align-items: center;
  
}

#s-eb66fa45-3705-4806-b1be-9ae03bdc59c4 {
  margin-top: 40px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-6cfd95d8-16d4-4ea8-b323-c08bf0945539 {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6cfd95d8-16d4-4ea8-b323-c08bf0945539 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-3a7d5d65-c104-4495-b40f-12cb04912b68 {
  margin-left: 10px;
margin-right: 10px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-3a7d5d65-c104-4495-b40f-12cb04912b68"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a7d5d65-c104-4495-b40f-12cb04912b68"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3a7d5d65-c104-4495-b40f-12cb04912b68"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a7d5d65-c104-4495-b40f-12cb04912b68"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-14040805-a852-4d49-b9de-53f123e00d95 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-14040805-a852-4d49-b9de-53f123e00d95 img.shogun-image {
    

    
    
    
  }


#s-14040805-a852-4d49-b9de-53f123e00d95 .shogun-image-content {
  
    align-items: center;
  
}

#s-f199f40e-6acb-48ab-8d33-a5de5a84e441 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-f199f40e-6acb-48ab-8d33-a5de5a84e441 img.shogun-image {
    

    
    
    
  }


#s-f199f40e-6acb-48ab-8d33-a5de5a84e441 .shogun-image-content {
  
    align-items: center;
  
}

#s-d5bc2db6-b293-4f2b-bfba-4057f9e58f18 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-d5bc2db6-b293-4f2b-bfba-4057f9e58f18 img.shogun-image {
    

    
    
    
  }


#s-d5bc2db6-b293-4f2b-bfba-4057f9e58f18 .shogun-image-content {
  
    align-items: center;
  
}

#s-5123bd23-546e-4646-b7e9-452ea35c81b7 {
  margin-top: 25px;
margin-left: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ae0f733d-d56e-4a00-84ee-efaaacc496b8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

.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-9af71ed4-7831-484a-8c60-c3c69fdeb900 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 25px;
margin-left: 10px;
margin-bottom: 25px;
margin-right: 10px;
padding-left: 1px;
padding-right: 1px;
max-width: 1000px;
}

#s-0c2b8f2d-152f-4d8d-8098-53f6033edf67 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-35706678-cda1-4206-945d-d79c3de15e8e {
  padding-top: 50px;
padding-left: 20px;
padding-bottom: 50px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-35706678-cda1-4206-945d-d79c3de15e8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35706678-cda1-4206-945d-d79c3de15e8e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-08594819-c7fe-4c52-9939-e8cc7f42f2cd {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-9e404e33-7de4-43fa-8779-cae5802aa735"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e404e33-7de4-43fa-8779-cae5802aa735"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9e404e33-7de4-43fa-8779-cae5802aa735"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e404e33-7de4-43fa-8779-cae5802aa735"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-dc682bf1-026e-46cc-b093-26bf1c745d7d {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-dc682bf1-026e-46cc-b093-26bf1c745d7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc682bf1-026e-46cc-b093-26bf1c745d7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e62b0c0f-f611-4c1e-9ded-5d75fbdc707c {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
padding-top: 20px;
padding-bottom: 20px;
background-color: rgba(0, 0, 0, 1);
}

#s-816a3e0e-7030-4daf-9c11-c67ef2ffa5cf {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-816a3e0e-7030-4daf-9c11-c67ef2ffa5cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-816a3e0e-7030-4daf-9c11-c67ef2ffa5cf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-816a3e0e-7030-4daf-9c11-c67ef2ffa5cf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-816a3e0e-7030-4daf-9c11-c67ef2ffa5cf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-186b734e-8996-47e4-9d85-a3f78192e9ea {
  text-align: center;
}







  #s-186b734e-8996-47e4-9d85-a3f78192e9ea img.shogun-image {
    

    
    
    
  }


#s-186b734e-8996-47e4-9d85-a3f78192e9ea .shogun-image-content {
  
    align-items: center;
  
}

#s-d8d279c3-68f5-4863-b887-da245c29c6ee {
  text-align: center;
}







  #s-d8d279c3-68f5-4863-b887-da245c29c6ee img.shogun-image {
    

    
    
    
  }


#s-d8d279c3-68f5-4863-b887-da245c29c6ee .shogun-image-content {
  
    align-items: center;
  
}

#s-099f7311-bea7-46f4-ac15-467661cb08d1 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-099f7311-bea7-46f4-ac15-467661cb08d1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-099f7311-bea7-46f4-ac15-467661cb08d1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-099f7311-bea7-46f4-ac15-467661cb08d1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-099f7311-bea7-46f4-ac15-467661cb08d1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-50e342e5-21a2-4c50-bc16-ffafe23122cd {
  text-align: center;
}







  #s-50e342e5-21a2-4c50-bc16-ffafe23122cd img.shogun-image {
    

    
    
    
  }


#s-50e342e5-21a2-4c50-bc16-ffafe23122cd .shogun-image-content {
  
    align-items: center;
  
}

#s-761ff976-2ba2-4eb0-9e9f-679a55deeb7a {
  text-align: center;
}







  #s-761ff976-2ba2-4eb0-9e9f-679a55deeb7a img.shogun-image {
    

    
    
    
  }


#s-761ff976-2ba2-4eb0-9e9f-679a55deeb7a .shogun-image-content {
  
    align-items: center;
  
}

#s-58043d88-0f0d-42da-bd2e-b2dfc3289a6f {
  min-height: 50px;
background-color: rgba(231, 231, 231, 1);
}








#s-58043d88-0f0d-42da-bd2e-b2dfc3289a6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58043d88-0f0d-42da-bd2e-b2dfc3289a6f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c84a4779-731a-40b1-8187-103b1c422a5f {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-c84a4779-731a-40b1-8187-103b1c422a5f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c84a4779-731a-40b1-8187-103b1c422a5f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c84a4779-731a-40b1-8187-103b1c422a5f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c84a4779-731a-40b1-8187-103b1c422a5f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6bd684be-72ab-49b8-9f00-a4a6e913ef58 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(0, 0, 0, 1);
}

#s-9b375ddc-2a28-4cec-8b1b-3486eeda2b3e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(0, 0, 0, 1);
}

#s-f641e2e9-99e5-436f-a545-608a505dc5e9 {
  min-height: 50px;
background-color: rgba(184, 184, 184, 1);
}








#s-f641e2e9-99e5-436f-a545-608a505dc5e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f641e2e9-99e5-436f-a545-608a505dc5e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7454142-9d25-48c9-97f0-cf0037123feb {
  padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}

#s-6a99317d-c691-448f-8af5-2575e60df718 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-6a99317d-c691-448f-8af5-2575e60df718"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a99317d-c691-448f-8af5-2575e60df718"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6a99317d-c691-448f-8af5-2575e60df718"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6a99317d-c691-448f-8af5-2575e60df718"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-17f723e9-1bf2-4c5c-bad3-842e2eaeace9 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-17f723e9-1bf2-4c5c-bad3-842e2eaeace9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17f723e9-1bf2-4c5c-bad3-842e2eaeace9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3fe9605-0eff-4c40-bb61-18e1653b291e {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-17dca6af-623e-4742-b4aa-87efc18a8c58 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-17dca6af-623e-4742-b4aa-87efc18a8c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17dca6af-623e-4742-b4aa-87efc18a8c58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33c59f00-eb25-4561-bd19-1972434a6acf {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-b0e5e6f7-8a34-42be-a04c-94200b4c8f42 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-b0e5e6f7-8a34-42be-a04c-94200b4c8f42"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b0e5e6f7-8a34-42be-a04c-94200b4c8f42"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b0e5e6f7-8a34-42be-a04c-94200b4c8f42"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b0e5e6f7-8a34-42be-a04c-94200b4c8f42"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-92aa9765-0f03-47f5-85bc-507f5d717a38 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-92aa9765-0f03-47f5-85bc-507f5d717a38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92aa9765-0f03-47f5-85bc-507f5d717a38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5b30d38-2f9e-4027-af78-6265602ee6a4 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-6418a755-2e1a-49c7-983f-93026ed5feef {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6418a755-2e1a-49c7-983f-93026ed5feef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6418a755-2e1a-49c7-983f-93026ed5feef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-866c91ba-34e4-49cc-8f34-728b2dc5aef4 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-34df4cfe-6654-4e68-8c26-8197ac64b65f {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-34df4cfe-6654-4e68-8c26-8197ac64b65f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34df4cfe-6654-4e68-8c26-8197ac64b65f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34df4cfe-6654-4e68-8c26-8197ac64b65f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34df4cfe-6654-4e68-8c26-8197ac64b65f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c0d8dcd0-793b-4f14-845e-b5d832dc83d2 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c0d8dcd0-793b-4f14-845e-b5d832dc83d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0d8dcd0-793b-4f14-845e-b5d832dc83d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-35a5d1ca-132f-43d9-89eb-ab2bf76df634 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-0cd873c3-a137-4c4f-894f-4c9f92c49275 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0cd873c3-a137-4c4f-894f-4c9f92c49275 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cd873c3-a137-4c4f-894f-4c9f92c49275.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ed903ef-b059-4066-80e4-074314e2d26b {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-133d5261-10e3-42d3-92e1-703079cf433c {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-133d5261-10e3-42d3-92e1-703079cf433c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-133d5261-10e3-42d3-92e1-703079cf433c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-133d5261-10e3-42d3-92e1-703079cf433c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-133d5261-10e3-42d3-92e1-703079cf433c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d1d21c05-3abb-49c2-85bd-9e5be5f5423f {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d1d21c05-3abb-49c2-85bd-9e5be5f5423f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1d21c05-3abb-49c2-85bd-9e5be5f5423f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3aeaf664-3cd4-472f-bf93-802587c80b33 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-5db7f1f0-b96b-451f-9553-069c46f2d815 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5db7f1f0-b96b-451f-9553-069c46f2d815 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5db7f1f0-b96b-451f-9553-069c46f2d815.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c2a6e67-6af4-4a2b-ad93-7948d667ae8a {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-e44b3c43-172c-4782-9574-563556c98e18 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-e44b3c43-172c-4782-9574-563556c98e18"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e44b3c43-172c-4782-9574-563556c98e18"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e44b3c43-172c-4782-9574-563556c98e18"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e44b3c43-172c-4782-9574-563556c98e18"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0593b02e-3f11-4522-b2e7-84e63444f9f4 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0593b02e-3f11-4522-b2e7-84e63444f9f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0593b02e-3f11-4522-b2e7-84e63444f9f4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b53c981-cb3b-44e0-8cb5-1d4335cff1d3 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-edeaf32e-24ef-406d-9ef4-d68e7ca4e3a1 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-edeaf32e-24ef-406d-9ef4-d68e7ca4e3a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edeaf32e-24ef-406d-9ef4-d68e7ca4e3a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31b7568d-4272-4c47-ad37-9079d754e689 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-263768bb-f228-4ff2-ae71-58fa1ef4a3fc {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-263768bb-f228-4ff2-ae71-58fa1ef4a3fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-263768bb-f228-4ff2-ae71-58fa1ef4a3fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-263768bb-f228-4ff2-ae71-58fa1ef4a3fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-263768bb-f228-4ff2-ae71-58fa1ef4a3fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4e25f6cf-7a50-4d06-973f-24628ab11088 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4e25f6cf-7a50-4d06-973f-24628ab11088 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e25f6cf-7a50-4d06-973f-24628ab11088.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29a7e8fa-46eb-4e55-a7c1-87f1190ffc9f {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-b50436a2-adbe-46fb-a8f8-2dbcc53aebe9 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-b50436a2-adbe-46fb-a8f8-2dbcc53aebe9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b50436a2-adbe-46fb-a8f8-2dbcc53aebe9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30e3582b-e942-41a0-a92d-ee17ca7eeeed {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-222fc407-acff-4d1b-a824-ac2489bb4543 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-222fc407-acff-4d1b-a824-ac2489bb4543"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-222fc407-acff-4d1b-a824-ac2489bb4543"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-222fc407-acff-4d1b-a824-ac2489bb4543"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-222fc407-acff-4d1b-a824-ac2489bb4543"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e2faf6bf-5136-4d69-b7bc-2bff07ac06c6 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e2faf6bf-5136-4d69-b7bc-2bff07ac06c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2faf6bf-5136-4d69-b7bc-2bff07ac06c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa5376ca-d0a4-4168-82b4-de579734c3bb {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-873e4611-8eeb-4cec-afb3-b891e9d14887 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-873e4611-8eeb-4cec-afb3-b891e9d14887 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-873e4611-8eeb-4cec-afb3-b891e9d14887.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3442ebff-f34d-4af8-8f14-5bf76438c8a9 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-3d968f3b-c357-4be4-bc8f-ddfa52ccf8a5 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-3d968f3b-c357-4be4-bc8f-ddfa52ccf8a5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d968f3b-c357-4be4-bc8f-ddfa52ccf8a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3d968f3b-c357-4be4-bc8f-ddfa52ccf8a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d968f3b-c357-4be4-bc8f-ddfa52ccf8a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-eff40179-191e-4abb-803c-fb07efbd035d {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-eff40179-191e-4abb-803c-fb07efbd035d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eff40179-191e-4abb-803c-fb07efbd035d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-780d7e39-e5f7-4ad9-be8a-86fe17ba4b2b {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-7235cc6c-3dd7-4794-934f-3c0814b110e3 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-7235cc6c-3dd7-4794-934f-3c0814b110e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7235cc6c-3dd7-4794-934f-3c0814b110e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-affa8602-8830-44f1-83aa-2fa2e08a8aee {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-4886b7d3-4cde-4ea7-bdc8-85d95b9cc2de {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-4886b7d3-4cde-4ea7-bdc8-85d95b9cc2de"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4886b7d3-4cde-4ea7-bdc8-85d95b9cc2de"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4886b7d3-4cde-4ea7-bdc8-85d95b9cc2de"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4886b7d3-4cde-4ea7-bdc8-85d95b9cc2de"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-49e5c5a3-de96-4cdc-876b-1a8824af2dcc {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-49e5c5a3-de96-4cdc-876b-1a8824af2dcc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49e5c5a3-de96-4cdc-876b-1a8824af2dcc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f5aed4f-09f0-4070-a241-85253676ae95 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-5dab115c-641d-4dd8-9e5f-13c508beea89 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5dab115c-641d-4dd8-9e5f-13c508beea89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5dab115c-641d-4dd8-9e5f-13c508beea89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4415d7f1-7d6d-44c4-9466-c44977a89768 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-a2d07cb3-c9ff-4c9e-af9f-ceb2299a1587 {
  padding-top: 25px;
padding-left: 20px;
padding-bottom: 25px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-a2d07cb3-c9ff-4c9e-af9f-ceb2299a1587 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a2d07cb3-c9ff-4c9e-af9f-ceb2299a1587.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-5e5ca954-eaba-4911-8e93-650099886608"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e5ca954-eaba-4911-8e93-650099886608"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e5ca954-eaba-4911-8e93-650099886608"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e5ca954-eaba-4911-8e93-650099886608"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-00b301bd-7c41-4d40-9193-8a343aae87b9 .shogun-icon-wrapper {
  text-align: center;
}


#s-00b301bd-7c41-4d40-9193-8a343aae87b9 .shogun-icon-wrapper > .shogun-icon {

  font-size: 64px !important;
  color: rgba(211, 165, 3, 1);
}

#s-85886d8b-1773-4a1d-b14d-d156246f9ef5 {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-85886d8b-1773-4a1d-b14d-d156246f9ef5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85886d8b-1773-4a1d-b14d-d156246f9ef5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17816452-6f50-41d5-92f6-ded7fd1c43d6 .shogun-icon-wrapper {
  text-align: center;
}


#s-17816452-6f50-41d5-92f6-ded7fd1c43d6 .shogun-icon-wrapper > .shogun-icon {

  font-size: 64px !important;
  color: rgba(211, 165, 3, 1);
}

#s-84a39235-68ab-42e0-afd8-c7ac4f8969df {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-84a39235-68ab-42e0-afd8-c7ac4f8969df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84a39235-68ab-42e0-afd8-c7ac4f8969df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e54792a9-c815-4374-9703-f018546d219f {
  min-height: 50px;
}








#s-e54792a9-c815-4374-9703-f018546d219f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e54792a9-c815-4374-9703-f018546d219f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc38d50d-5ba1-47c3-b805-f05f0c778d98 {
  padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}

#s-1a4d2d16-7303-45af-92d6-1ed7532d9ffa {
  min-height: 50px;
}








#s-1a4d2d16-7303-45af-92d6-1ed7532d9ffa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a4d2d16-7303-45af-92d6-1ed7532d9ffa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f65dda73-9dd3-4eb2-b8d8-3bb3a482136c {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
min-height: 50px;
}








#s-f65dda73-9dd3-4eb2-b8d8-3bb3a482136c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f65dda73-9dd3-4eb2-b8d8-3bb3a482136c.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-66e82a64-5030-4d59-8cb2-0c8eb3e9367e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66e82a64-5030-4d59-8cb2-0c8eb3e9367e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-66e82a64-5030-4d59-8cb2-0c8eb3e9367e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-66e82a64-5030-4d59-8cb2-0c8eb3e9367e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-19aedd90-4c37-4d62-a716-8d417ca3fb60"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-19aedd90-4c37-4d62-a716-8d417ca3fb60"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-19aedd90-4c37-4d62-a716-8d417ca3fb60"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-19aedd90-4c37-4d62-a716-8d417ca3fb60"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c img.shogun-image,
  #s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c {
    width: 100%;
    height: auto;
  }



  #s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c img.shogun-image {
    

    
    
    
  }


#s-c1905dd6-b2ee-426a-abe2-b3bfeb149e0c .shogun-image-content {
  
    align-items: center;
  
}

#s-0477dce0-92a5-4772-8a64-942437ee72db {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-0477dce0-92a5-4772-8a64-942437ee72db img.shogun-image,
  #s-0477dce0-92a5-4772-8a64-942437ee72db .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0477dce0-92a5-4772-8a64-942437ee72db {
    width: 100%;
    height: auto;
  }



  #s-0477dce0-92a5-4772-8a64-942437ee72db img.shogun-image {
    

    
    
    
  }


#s-0477dce0-92a5-4772-8a64-942437ee72db .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-312c8303-638d-44a7-9aa2-c207ede48e3c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-312c8303-638d-44a7-9aa2-c207ede48e3c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-312c8303-638d-44a7-9aa2-c207ede48e3c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-312c8303-638d-44a7-9aa2-c207ede48e3c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c0179742-044b-46f8-9c62-0af591e9ebf8 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-c0179742-044b-46f8-9c62-0af591e9ebf8 img.shogun-image,
  #s-c0179742-044b-46f8-9c62-0af591e9ebf8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c0179742-044b-46f8-9c62-0af591e9ebf8 {
    width: 100%;
    height: auto;
  }



  #s-c0179742-044b-46f8-9c62-0af591e9ebf8 img.shogun-image {
    

    
    
    
  }


#s-c0179742-044b-46f8-9c62-0af591e9ebf8 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/278;
text-align: center;
}





  #s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 img.shogun-image,
  #s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 {
    width: 100%;
    height: auto;
  }



  #s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 img.shogun-image {
    

    
    
    
  }


#s-fc6b2bf6-3a31-4502-9d70-209eb63a9083 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9ad2bdac-84fd-49cf-99d5-7b668221996d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ad2bdac-84fd-49cf-99d5-7b668221996d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ad2bdac-84fd-49cf-99d5-7b668221996d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ad2bdac-84fd-49cf-99d5-7b668221996d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-61125d7b-0b4a-45cd-a7aa-2d462a7ce256"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-61125d7b-0b4a-45cd-a7aa-2d462a7ce256"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-61125d7b-0b4a-45cd-a7aa-2d462a7ce256"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-61125d7b-0b4a-45cd-a7aa-2d462a7ce256"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-decaebb7-5efa-419b-bfff-13c0f5e3bcad {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-decaebb7-5efa-419b-bfff-13c0f5e3bcad img.shogun-image {
    

    
    
    
  }


#s-decaebb7-5efa-419b-bfff-13c0f5e3bcad .shogun-image-content {
  
    align-items: center;
  
}

#s-ae5f35af-1f08-442e-89df-132a6d7391f5 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ae5f35af-1f08-442e-89df-132a6d7391f5 img.shogun-image {
    

    
    
    
  }


#s-ae5f35af-1f08-442e-89df-132a6d7391f5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-70a0d9d2-bb3d-47ac-bf41-4eeaa4004f27"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-70a0d9d2-bb3d-47ac-bf41-4eeaa4004f27"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70a0d9d2-bb3d-47ac-bf41-4eeaa4004f27"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70a0d9d2-bb3d-47ac-bf41-4eeaa4004f27"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-992df100-e889-49ac-bd5d-14a932dbfd95 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-992df100-e889-49ac-bd5d-14a932dbfd95 img.shogun-image {
    

    
    
    
  }


#s-992df100-e889-49ac-bd5d-14a932dbfd95 .shogun-image-content {
  
    align-items: center;
  
}

#s-2f198a6e-c95a-4ea1-b01b-62b7e4882b96 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-2f198a6e-c95a-4ea1-b01b-62b7e4882b96 img.shogun-image {
    

    
    
    
  }


#s-2f198a6e-c95a-4ea1-b01b-62b7e4882b96 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9eccfd98-0c5c-4472-a2b1-05da38ffb843"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9eccfd98-0c5c-4472-a2b1-05da38ffb843"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9eccfd98-0c5c-4472-a2b1-05da38ffb843"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9eccfd98-0c5c-4472-a2b1-05da38ffb843"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-96264899-4290-4be2-bfbb-4bec823949ff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-96264899-4290-4be2-bfbb-4bec823949ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96264899-4290-4be2-bfbb-4bec823949ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96264899-4290-4be2-bfbb-4bec823949ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-92b4e1de-4c32-4441-9fd2-67a170e41d8d {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-92b4e1de-4c32-4441-9fd2-67a170e41d8d img.shogun-image {
    

    
    
    
  }


#s-92b4e1de-4c32-4441-9fd2-67a170e41d8d .shogun-image-content {
  
    align-items: center;
  
}

#s-8363f7b0-96f8-4a3e-a6c3-b38ab8ec0f58 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-8363f7b0-96f8-4a3e-a6c3-b38ab8ec0f58 img.shogun-image {
    

    
    
    
  }


#s-8363f7b0-96f8-4a3e-a6c3-b38ab8ec0f58 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ca3447df-d05b-4635-a1a9-e87c7ad9cb56"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ca3447df-d05b-4635-a1a9-e87c7ad9cb56"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ca3447df-d05b-4635-a1a9-e87c7ad9cb56"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca3447df-d05b-4635-a1a9-e87c7ad9cb56"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e30b6a99-7ba8-40f3-8520-fd283b3fa588 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-e30b6a99-7ba8-40f3-8520-fd283b3fa588 img.shogun-image {
    

    
    
    
  }


#s-e30b6a99-7ba8-40f3-8520-fd283b3fa588 .shogun-image-content {
  
    align-items: center;
  
}

#s-919f7024-ccbe-4a48-948a-d9cdab089563 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-919f7024-ccbe-4a48-948a-d9cdab089563 img.shogun-image {
    

    
    
    
  }


#s-919f7024-ccbe-4a48-948a-d9cdab089563 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-99b779b0-25e0-4ef1-9c46-334b216c47f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99b779b0-25e0-4ef1-9c46-334b216c47f5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99b779b0-25e0-4ef1-9c46-334b216c47f5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99b779b0-25e0-4ef1-9c46-334b216c47f5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e7edc974-6961-4512-93de-9afece021c75"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e7edc974-6961-4512-93de-9afece021c75"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e7edc974-6961-4512-93de-9afece021c75"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7edc974-6961-4512-93de-9afece021c75"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7e3763bd-2d6c-4f75-9c8d-dd75cddc9e7e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-7e3763bd-2d6c-4f75-9c8d-dd75cddc9e7e img.shogun-image {
    

    
    
    
  }


#s-7e3763bd-2d6c-4f75-9c8d-dd75cddc9e7e .shogun-image-content {
  
    align-items: center;
  
}

#s-bd7296e0-7e05-4a64-b446-30ed6a4b93c7 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-bd7296e0-7e05-4a64-b446-30ed6a4b93c7 img.shogun-image {
    

    
    
    
  }


#s-bd7296e0-7e05-4a64-b446-30ed6a4b93c7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-a2310890-b892-48b4-b3a1-ba5e318d9329"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a2310890-b892-48b4-b3a1-ba5e318d9329"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a2310890-b892-48b4-b3a1-ba5e318d9329"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2310890-b892-48b4-b3a1-ba5e318d9329"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-49679983-0c6f-475c-adbf-2de144a905a4 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-49679983-0c6f-475c-adbf-2de144a905a4 img.shogun-image {
    

    
    
    
  }


#s-49679983-0c6f-475c-adbf-2de144a905a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-b63b1e2a-247a-441d-ae7b-a864d60cb0b6 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-b63b1e2a-247a-441d-ae7b-a864d60cb0b6 img.shogun-image {
    

    
    
    
  }


#s-b63b1e2a-247a-441d-ae7b-a864d60cb0b6 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e609c38c-f082-414b-a0b0-310d8e2ed26f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e609c38c-f082-414b-a0b0-310d8e2ed26f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e609c38c-f082-414b-a0b0-310d8e2ed26f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e609c38c-f082-414b-a0b0-310d8e2ed26f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-64c59107-0aa3-41e1-a519-a3c40a06e792"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-64c59107-0aa3-41e1-a519-a3c40a06e792"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64c59107-0aa3-41e1-a519-a3c40a06e792"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64c59107-0aa3-41e1-a519-a3c40a06e792"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-40be523c-6a8e-4d10-8da4-972764294c4f {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-40be523c-6a8e-4d10-8da4-972764294c4f img.shogun-image {
    

    
    
    
  }


#s-40be523c-6a8e-4d10-8da4-972764294c4f .shogun-image-content {
  
    align-items: center;
  
}

#s-465e96e9-4251-4d85-9611-f1dee5970f9e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-465e96e9-4251-4d85-9611-f1dee5970f9e img.shogun-image {
    

    
    
    
  }


#s-465e96e9-4251-4d85-9611-f1dee5970f9e .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-197022dd-8892-4afa-8cf0-988701d0e64b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-197022dd-8892-4afa-8cf0-988701d0e64b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-197022dd-8892-4afa-8cf0-988701d0e64b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-197022dd-8892-4afa-8cf0-988701d0e64b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ead07871-8667-42a3-8d78-11b58a51f460 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ead07871-8667-42a3-8d78-11b58a51f460 img.shogun-image {
    

    
    
    
  }


#s-ead07871-8667-42a3-8d78-11b58a51f460 .shogun-image-content {
  
    align-items: center;
  
}

#s-a06bceea-ebc6-4701-b93e-f6e1dab17b9e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-a06bceea-ebc6-4701-b93e-f6e1dab17b9e img.shogun-image {
    

    
    
    
  }


#s-a06bceea-ebc6-4701-b93e-f6e1dab17b9e .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d1ae47aa-92dc-40e8-991e-95f49031280a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d1ae47aa-92dc-40e8-991e-95f49031280a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d1ae47aa-92dc-40e8-991e-95f49031280a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1ae47aa-92dc-40e8-991e-95f49031280a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7a72e633-1584-4b96-9679-79d0503fe886"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7a72e633-1584-4b96-9679-79d0503fe886"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a72e633-1584-4b96-9679-79d0503fe886"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a72e633-1584-4b96-9679-79d0503fe886"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a4a65b94-17ef-4da2-9901-90f399c1e3b7 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-a4a65b94-17ef-4da2-9901-90f399c1e3b7 img.shogun-image {
    

    
    
    
  }


#s-a4a65b94-17ef-4da2-9901-90f399c1e3b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-ae12cdc5-bba7-4231-b2e4-8b8e7535e3d2 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ae12cdc5-bba7-4231-b2e4-8b8e7535e3d2 img.shogun-image {
    

    
    
    
  }


#s-ae12cdc5-bba7-4231-b2e4-8b8e7535e3d2 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-92190b9d-d95d-420f-b41b-f69d24fa0c03"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-92190b9d-d95d-420f-b41b-f69d24fa0c03"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-92190b9d-d95d-420f-b41b-f69d24fa0c03"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-92190b9d-d95d-420f-b41b-f69d24fa0c03"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b48038d7-079e-4b70-a0ae-c927f084dc94 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-b48038d7-079e-4b70-a0ae-c927f084dc94 img.shogun-image {
    

    
    
    
  }


#s-b48038d7-079e-4b70-a0ae-c927f084dc94 .shogun-image-content {
  
    align-items: center;
  
}

#s-ddcbeb5b-70bc-4a59-91af-88aad00176c6 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ddcbeb5b-70bc-4a59-91af-88aad00176c6 img.shogun-image {
    

    
    
    
  }


#s-ddcbeb5b-70bc-4a59-91af-88aad00176c6 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e61fdc14-ca51-4dab-972f-ef7cdd4a1228"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e61fdc14-ca51-4dab-972f-ef7cdd4a1228"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e61fdc14-ca51-4dab-972f-ef7cdd4a1228"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e61fdc14-ca51-4dab-972f-ef7cdd4a1228"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-1bf67bb9-eef2-4ec7-b904-8cf9a9768b10"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1bf67bb9-eef2-4ec7-b904-8cf9a9768b10"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1bf67bb9-eef2-4ec7-b904-8cf9a9768b10"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1bf67bb9-eef2-4ec7-b904-8cf9a9768b10"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8d76ce50-c594-497f-9b99-a8cc8dfbf0e1 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-8d76ce50-c594-497f-9b99-a8cc8dfbf0e1 img.shogun-image {
    

    
    
    
  }


#s-8d76ce50-c594-497f-9b99-a8cc8dfbf0e1 .shogun-image-content {
  
    align-items: center;
  
}

#s-ec3ae6e9-3ddd-477f-a464-22aef9a85d43 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ec3ae6e9-3ddd-477f-a464-22aef9a85d43 img.shogun-image {
    

    
    
    
  }


#s-ec3ae6e9-3ddd-477f-a464-22aef9a85d43 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-10cfa75b-729e-45a9-b222-9dc086a9c649"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-10cfa75b-729e-45a9-b222-9dc086a9c649"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10cfa75b-729e-45a9-b222-9dc086a9c649"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10cfa75b-729e-45a9-b222-9dc086a9c649"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fb592aeb-d373-45f8-bb80-e19731f01e13 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-fb592aeb-d373-45f8-bb80-e19731f01e13 img.shogun-image {
    

    
    
    
  }


#s-fb592aeb-d373-45f8-bb80-e19731f01e13 .shogun-image-content {
  
    align-items: center;
  
}

#s-9f4f0934-13c1-486b-b84f-48bdbf772fdd {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-9f4f0934-13c1-486b-b84f-48bdbf772fdd img.shogun-image {
    

    
    
    
  }


#s-9f4f0934-13c1-486b-b84f-48bdbf772fdd .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-f22270e1-a770-4ed1-a81c-0ffacc425401"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f22270e1-a770-4ed1-a81c-0ffacc425401"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f22270e1-a770-4ed1-a81c-0ffacc425401"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f22270e1-a770-4ed1-a81c-0ffacc425401"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-b8bd6de3-1e4c-4b62-8928-3066a105d5b9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b8bd6de3-1e4c-4b62-8928-3066a105d5b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b8bd6de3-1e4c-4b62-8928-3066a105d5b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b8bd6de3-1e4c-4b62-8928-3066a105d5b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0c8ff4fd-579e-4214-9da1-0c39f36f38d6 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-0c8ff4fd-579e-4214-9da1-0c39f36f38d6 img.shogun-image {
    

    
    
    
  }


#s-0c8ff4fd-579e-4214-9da1-0c39f36f38d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc73c3cd-e853-4cd5-b110-bb6ba6b6b2a8 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-dc73c3cd-e853-4cd5-b110-bb6ba6b6b2a8 img.shogun-image {
    

    
    
    
  }


#s-dc73c3cd-e853-4cd5-b110-bb6ba6b6b2a8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0b71f9be-f95f-484e-9a01-07905848bfa8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0b71f9be-f95f-484e-9a01-07905848bfa8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0b71f9be-f95f-484e-9a01-07905848bfa8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b71f9be-f95f-484e-9a01-07905848bfa8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2be85bf8-227c-4f61-948f-4648a6517435 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-2be85bf8-227c-4f61-948f-4648a6517435 img.shogun-image {
    

    
    
    
  }


#s-2be85bf8-227c-4f61-948f-4648a6517435 .shogun-image-content {
  
    align-items: center;
  
}

#s-542ef9f9-88a8-4568-9fe4-1199c97f2d44 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-542ef9f9-88a8-4568-9fe4-1199c97f2d44 img.shogun-image {
    

    
    
    
  }


#s-542ef9f9-88a8-4568-9fe4-1199c97f2d44 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5f601c3f-fe32-44c4-828d-90ac4e96a5ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f601c3f-fe32-44c4-828d-90ac4e96a5ae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f601c3f-fe32-44c4-828d-90ac4e96a5ae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f601c3f-fe32-44c4-828d-90ac4e96a5ae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-39b47723-d91c-499c-97df-527a76180d3e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-39b47723-d91c-499c-97df-527a76180d3e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-39b47723-d91c-499c-97df-527a76180d3e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-39b47723-d91c-499c-97df-527a76180d3e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6aebf04e-c0d9-4aa1-8897-bf98b36c90f1 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-6aebf04e-c0d9-4aa1-8897-bf98b36c90f1 img.shogun-image {
    

    
    
    
  }


#s-6aebf04e-c0d9-4aa1-8897-bf98b36c90f1 .shogun-image-content {
  
    align-items: center;
  
}

#s-ba2f941f-c263-4dc8-bcec-2c44e9e85fba {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ba2f941f-c263-4dc8-bcec-2c44e9e85fba img.shogun-image {
    

    
    
    
  }


#s-ba2f941f-c263-4dc8-bcec-2c44e9e85fba .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-c2c184ba-68ac-4c66-b4db-0c2c80d8d43b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c2c184ba-68ac-4c66-b4db-0c2c80d8d43b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c2c184ba-68ac-4c66-b4db-0c2c80d8d43b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2c184ba-68ac-4c66-b4db-0c2c80d8d43b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-905fa7cc-18ac-4ebe-82ae-0c14b8791a4f {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-905fa7cc-18ac-4ebe-82ae-0c14b8791a4f img.shogun-image {
    

    
    
    
  }


#s-905fa7cc-18ac-4ebe-82ae-0c14b8791a4f .shogun-image-content {
  
    align-items: center;
  
}

#s-991fbd1d-9eca-47e3-ac84-7630e71cad80 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-991fbd1d-9eca-47e3-ac84-7630e71cad80 img.shogun-image {
    

    
    
    
  }


#s-991fbd1d-9eca-47e3-ac84-7630e71cad80 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9afa4703-d801-4622-a424-93e2b56d59e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9afa4703-d801-4622-a424-93e2b56d59e1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9afa4703-d801-4622-a424-93e2b56d59e1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9afa4703-d801-4622-a424-93e2b56d59e1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e111b9e3-2f14-42d5-8937-8098ea483780"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e111b9e3-2f14-42d5-8937-8098ea483780"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e111b9e3-2f14-42d5-8937-8098ea483780"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e111b9e3-2f14-42d5-8937-8098ea483780"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7984d410-ce47-4a7c-a4c3-b26686b957f4 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-7984d410-ce47-4a7c-a4c3-b26686b957f4 img.shogun-image {
    

    
    
    
  }


#s-7984d410-ce47-4a7c-a4c3-b26686b957f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-a1eae06c-9cd9-4610-a80a-1c1863c2dbfc {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-a1eae06c-9cd9-4610-a80a-1c1863c2dbfc img.shogun-image {
    

    
    
    
  }


#s-a1eae06c-9cd9-4610-a80a-1c1863c2dbfc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3a8b62f6-695a-4351-9727-dc25fae76c3e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3a8b62f6-695a-4351-9727-dc25fae76c3e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3a8b62f6-695a-4351-9727-dc25fae76c3e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a8b62f6-695a-4351-9727-dc25fae76c3e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9bfc6313-f1df-47ac-bba7-93ff566a9a9e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-9bfc6313-f1df-47ac-bba7-93ff566a9a9e img.shogun-image {
    

    
    
    
  }


#s-9bfc6313-f1df-47ac-bba7-93ff566a9a9e .shogun-image-content {
  
    align-items: center;
  
}

#s-f696a531-4c6a-4922-b504-b604ba92a5cf {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-f696a531-4c6a-4922-b504-b604ba92a5cf img.shogun-image {
    

    
    
    
  }


#s-f696a531-4c6a-4922-b504-b604ba92a5cf .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-7d1d0db1-6328-4302-ba3d-ae465e80f94c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d1d0db1-6328-4302-ba3d-ae465e80f94c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7d1d0db1-6328-4302-ba3d-ae465e80f94c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d1d0db1-6328-4302-ba3d-ae465e80f94c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-ddf007bd-4083-4da6-b4ee-315704ad57a8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ddf007bd-4083-4da6-b4ee-315704ad57a8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ddf007bd-4083-4da6-b4ee-315704ad57a8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ddf007bd-4083-4da6-b4ee-315704ad57a8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-39a2efb9-2dc7-46a3-b38a-8b2c93a8b2c5 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-39a2efb9-2dc7-46a3-b38a-8b2c93a8b2c5 img.shogun-image {
    

    
    
    
  }


#s-39a2efb9-2dc7-46a3-b38a-8b2c93a8b2c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-540e62c3-7b44-4fb0-9217-0c502a786291 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-540e62c3-7b44-4fb0-9217-0c502a786291 img.shogun-image {
    

    
    
    
  }


#s-540e62c3-7b44-4fb0-9217-0c502a786291 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-56f6887f-431a-4f87-873b-0e40f5634589"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-56f6887f-431a-4f87-873b-0e40f5634589"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-56f6887f-431a-4f87-873b-0e40f5634589"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-56f6887f-431a-4f87-873b-0e40f5634589"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1662e5aa-63f9-42d3-9cb8-b49a20b3c07f {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-1662e5aa-63f9-42d3-9cb8-b49a20b3c07f img.shogun-image {
    

    
    
    
  }


#s-1662e5aa-63f9-42d3-9cb8-b49a20b3c07f .shogun-image-content {
  
    align-items: center;
  
}

#s-ce3343de-3709-4030-ac1e-e04d0ab85e08 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ce3343de-3709-4030-ac1e-e04d0ab85e08 img.shogun-image {
    

    
    
    
  }


#s-ce3343de-3709-4030-ac1e-e04d0ab85e08 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9b71f16-4c4b-4bdf-9ec1-f8d65333d03f {
  min-height: 50px;
}








#s-c9b71f16-4c4b-4bdf-9ec1-f8d65333d03f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9b71f16-4c4b-4bdf-9ec1-f8d65333d03f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-537ce146-2c47-4ed2-b531-e07a66c8c4e3 {
  padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}

/*
  $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}