.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-1dcbd8cc-75f5-49c6-9244-600c21a743ba {
  padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-1dcbd8cc-75f5-49c6-9244-600c21a743ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1dcbd8cc-75f5-49c6-9244-600c21a743ba.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-1a0c6222-9cd1-4959-9b57-c237dfbdd21a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1a0c6222-9cd1-4959-9b57-c237dfbdd21a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1a0c6222-9cd1-4959-9b57-c237dfbdd21a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1a0c6222-9cd1-4959-9b57-c237dfbdd21a"] > .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-19509467-d883-4022-9a3d-a6d8cc221440 {
  text-align: center;
}







  #s-19509467-d883-4022-9a3d-a6d8cc221440 img.shogun-image {
    

    
    
    
  }


#s-19509467-d883-4022-9a3d-a6d8cc221440 .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-6e151f11-dbb0-4396-8ff8-774b6443f598 {
  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-728d71a0-a4fa-458b-8e84-4412a641efdc {
  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-8ba08e79-c426-434b-87bc-25928f2c7097 {
  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-50a6ed2b-a047-4482-afb5-51e707732713 {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-50a6ed2b-a047-4482-afb5-51e707732713"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50a6ed2b-a047-4482-afb5-51e707732713"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-50a6ed2b-a047-4482-afb5-51e707732713"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-50a6ed2b-a047-4482-afb5-51e707732713"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-339c6b77-0c5f-45d3-9ef7-41b5ab3285fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-339c6b77-0c5f-45d3-9ef7-41b5ab3285fa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-339c6b77-0c5f-45d3-9ef7-41b5ab3285fa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-339c6b77-0c5f-45d3-9ef7-41b5ab3285fa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b0e8c5d2-45b8-48f1-af99-f15e41f902c6 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-b0e8c5d2-45b8-48f1-af99-f15e41f902c6 img.shogun-image {
    

    
    
    
  }


#s-b0e8c5d2-45b8-48f1-af99-f15e41f902c6 .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-92221f43-b428-40c0-bfaf-56519dac4364 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92221f43-b428-40c0-bfaf-56519dac4364 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8fcac88c-2235-44f9-a924-be10ff011178 {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-b9b33bc5-9eec-44aa-a599-77476483cb86 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-b9b33bc5-9eec-44aa-a599-77476483cb86 img.shogun-image {
    

    
    
    
  }


#s-b9b33bc5-9eec-44aa-a599-77476483cb86 .shogun-image-content {
  
    align-items: center;
  
}

#s-edd5d1bb-366e-48ab-960a-ada75859faf8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-edd5d1bb-366e-48ab-960a-ada75859faf8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-333014a8-cfb8-4bd3-be16-259fdef73dfd {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-08725cd2-96a8-49c5-b277-a90e27e0bc6f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-08725cd2-96a8-49c5-b277-a90e27e0bc6f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-08725cd2-96a8-49c5-b277-a90e27e0bc6f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-08725cd2-96a8-49c5-b277-a90e27e0bc6f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-65e4c7fc-32bf-4c03-aa5a-be20e32c8a03 {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-65e4c7fc-32bf-4c03-aa5a-be20e32c8a03 img.shogun-image {
    

    
    
    
  }


#s-65e4c7fc-32bf-4c03-aa5a-be20e32c8a03 .shogun-image-content {
  
    align-items: center;
  
}

#s-d54f70c2-f8f0-48e2-ae79-c5b74453fe09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d54f70c2-f8f0-48e2-ae79-c5b74453fe09 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-59974122-7191-4c30-99f4-368fa9ab5cca {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-15829fe2-3c4d-4697-b6ac-1bd020e5c95f {
  margin-top: 15px;
margin-left: 40%;
margin-bottom: 15px;
margin-right: 40%;
max-width: 64px;
text-align: center;
}







  #s-15829fe2-3c4d-4697-b6ac-1bd020e5c95f img.shogun-image {
    

    
    
    
  }


#s-15829fe2-3c4d-4697-b6ac-1bd020e5c95f .shogun-image-content {
  
    align-items: center;
  
}

#s-555c984b-9f19-4a57-a1fe-b715b964cc65 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-555c984b-9f19-4a57-a1fe-b715b964cc65 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ed8f68af-a602-4d4a-ae34-0386dea18600 {
  margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
}

#s-6e1d5672-d7ff-4fe0-a7d8-923dbdcefeb9 {
  padding-top: 10px;
min-height: 50px;
}








#s-6e1d5672-d7ff-4fe0-a7d8-923dbdcefeb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e1d5672-d7ff-4fe0-a7d8-923dbdcefeb9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d1e9e3d1-ba0c-4e95-85dd-cdfbcc2f7c2c {
  padding-top: 25px;
padding-left: 10px;
padding-bottom: 25px;
padding-right: 10px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-d1e9e3d1-ba0c-4e95-85dd-cdfbcc2f7c2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1e9e3d1-ba0c-4e95-85dd-cdfbcc2f7c2c.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-f179f80d-395c-43cb-ba62-353c5fc108ca > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(235, 225, 225, 1);
}

#s-f179f80d-395c-43cb-ba62-353c5fc108ca > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-f179f80d-395c-43cb-ba62-353c5fc108ca > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-f179f80d-395c-43cb-ba62-353c5fc108ca > .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-f179f80d-395c-43cb-ba62-353c5fc108ca > .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-f179f80d-395c-43cb-ba62-353c5fc108ca > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-4bc15393-eba1-4e02-9b05-7b52fec829e7 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 20px;
}

#s-fb113d4d-c738-4b4c-9ede-b8ae4843d950 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-c67af5e8-fd5a-4e19-89b1-4592abdf869d {
  min-height: 50px;
}








#s-c67af5e8-fd5a-4e19-89b1-4592abdf869d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c67af5e8-fd5a-4e19-89b1-4592abdf869d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3fd7e40-d588-474a-a87d-6cecd68d0025 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-78bae19a-de04-4c16-8433-ae249629bef3 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-95e96859-3405-441a-8a46-78a40146d3bc {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-99d8910a-15e4-4eb7-a5b2-2b30073e86f4 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-1f582702-8d99-4685-96f5-451500e5cd32 {
  padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
}

#s-5ddc91b6-ad1b-46ec-af0e-6ab8a72fd207 {
  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-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
}

#s-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 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-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 td.shogun-table-column, #s-e55eb8f9-5c9b-4c11-9fc5-5269f0be9d38 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-ecb2f20d-10ea-4b14-90b0-78fb47261f4c {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-8d0fc0ae-7520-41c2-9021-ed8ef315e504 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-bd557475-f61c-4434-944e-cb5abae2ace7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd557475-f61c-4434-944e-cb5abae2ace7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-bd557475-f61c-4434-944e-cb5abae2ace7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd557475-f61c-4434-944e-cb5abae2ace7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-261df688-461c-44aa-81ed-36789e5d5b4b {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
text-align: center;
opacity: 1;
}







  #s-261df688-461c-44aa-81ed-36789e5d5b4b img.shogun-image {
    

    
    
    
  }


#s-261df688-461c-44aa-81ed-36789e5d5b4b .shogun-image-content {
  
    align-items: center;
  
}

#s-81465294-401e-49f3-b900-2bcfa32236d4 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
text-align: center;
}







  #s-81465294-401e-49f3-b900-2bcfa32236d4 img.shogun-image {
    

    
    
    
  }


#s-81465294-401e-49f3-b900-2bcfa32236d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-f423aac1-a9c3-474d-82d3-ea1ad4ee552d {
  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-f423aac1-a9c3-474d-82d3-ea1ad4ee552d img.shogun-image {
    

    
    
    
  }


#s-f423aac1-a9c3-474d-82d3-ea1ad4ee552d .shogun-image-content {
  
    align-items: center;
  
}

#s-1e15a5b4-5069-4fb2-a653-89bb15be3b60 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-06a00e83-bb86-4cb4-ae3e-86b79fbc143e {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-9761e7fc-8725-4080-b3b2-fa8f2c22d097 {
  margin-top: 20px;
margin-bottom: 30px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9761e7fc-8725-4080-b3b2-fa8f2c22d097 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-7ec0071d-02c1-4cd6-a265-1d66881c6114 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-7ec0071d-02c1-4cd6-a265-1d66881c6114"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ec0071d-02c1-4cd6-a265-1d66881c6114"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7ec0071d-02c1-4cd6-a265-1d66881c6114"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ec0071d-02c1-4cd6-a265-1d66881c6114"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-429eeacf-7935-46b6-94e5-6fefab190df8 {
  margin-top: 20px;
}

#s-d5173725-6c40-43b5-af2c-2efb84b17b5c {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-d5173725-6c40-43b5-af2c-2efb84b17b5c img.shogun-image {
    

    
    
    
  }


#s-d5173725-6c40-43b5-af2c-2efb84b17b5c .shogun-image-content {
  
    align-items: center;
  
}

#s-d99c8ed3-f905-4f5c-9b19-2358117e35f7 {
  margin-top: 20px;
}

#s-cbe3bdca-cb85-4b29-b986-acefe05f0949 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-cbe3bdca-cb85-4b29-b986-acefe05f0949 img.shogun-image {
    

    
    
    
  }


#s-cbe3bdca-cb85-4b29-b986-acefe05f0949 .shogun-image-content {
  
    align-items: center;
  
}

#s-d3a8f8fe-dd25-4f31-8645-e561c9fa1a63 {
  margin-top: 20px;
}

#s-2347c91e-ba23-427d-b0bf-01e3a1cb704e {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-2347c91e-ba23-427d-b0bf-01e3a1cb704e img.shogun-image {
    

    
    
    
  }


#s-2347c91e-ba23-427d-b0bf-01e3a1cb704e .shogun-image-content {
  
    align-items: center;
  
}

#s-05c2f024-6c5f-4cce-9049-3a89c9d2233e {
  margin-left: 10px;
margin-right: 10px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-05c2f024-6c5f-4cce-9049-3a89c9d2233e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-05c2f024-6c5f-4cce-9049-3a89c9d2233e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-05c2f024-6c5f-4cce-9049-3a89c9d2233e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-05c2f024-6c5f-4cce-9049-3a89c9d2233e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e41cd145-f29e-42f2-b9d9-99623b0d4d1b {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-e41cd145-f29e-42f2-b9d9-99623b0d4d1b img.shogun-image {
    

    
    
    
  }


#s-e41cd145-f29e-42f2-b9d9-99623b0d4d1b .shogun-image-content {
  
    align-items: center;
  
}

#s-36082920-2dc3-4596-bd73-0d8eac379686 {
  box-shadow:1px 1px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-36082920-2dc3-4596-bd73-0d8eac379686 img.shogun-image {
    

    
    
    
  }


#s-36082920-2dc3-4596-bd73-0d8eac379686 .shogun-image-content {
  
    align-items: center;
  
}

#s-79d8f0c6-950e-4d04-a67c-3206ba5e556a {
  margin-left: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-79d8f0c6-950e-4d04-a67c-3206ba5e556a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79d8f0c6-950e-4d04-a67c-3206ba5e556a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79d8f0c6-950e-4d04-a67c-3206ba5e556a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79d8f0c6-950e-4d04-a67c-3206ba5e556a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-35515335-a9d0-46c5-9e79-3b4fccb0b4e4 {
  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-35515335-a9d0-46c5-9e79-3b4fccb0b4e4 img.shogun-image {
    

    
    
    
  }


#s-35515335-a9d0-46c5-9e79-3b4fccb0b4e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-e4e89bee-8c1f-4a07-83ac-c1701b9212c1 {
  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-e4e89bee-8c1f-4a07-83ac-c1701b9212c1 img.shogun-image {
    

    
    
    
  }


#s-e4e89bee-8c1f-4a07-83ac-c1701b9212c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-af75d997-47a6-4807-92f6-f0af3c165f55 {
  margin-top: 40px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
background-color: rgba(0, 0, 0, 1);
}

#s-b8f454fd-8bf9-4c42-ba6b-51696d54bd90 {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b8f454fd-8bf9-4c42-ba6b-51696d54bd90 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-ba650e95-69fd-4d37-8e7f-f19d9b13293e {
  margin-left: 10px;
margin-right: 10px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-ba650e95-69fd-4d37-8e7f-f19d9b13293e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba650e95-69fd-4d37-8e7f-f19d9b13293e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ba650e95-69fd-4d37-8e7f-f19d9b13293e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ba650e95-69fd-4d37-8e7f-f19d9b13293e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5865b6e6-909c-4c1c-8812-ef5db74928c8 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-5865b6e6-909c-4c1c-8812-ef5db74928c8 img.shogun-image {
    

    
    
    
  }


#s-5865b6e6-909c-4c1c-8812-ef5db74928c8 .shogun-image-content {
  
    align-items: center;
  
}

#s-86c8a49b-efbe-419b-a528-785f4196c6f9 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-86c8a49b-efbe-419b-a528-785f4196c6f9 img.shogun-image {
    

    
    
    
  }


#s-86c8a49b-efbe-419b-a528-785f4196c6f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ae196ab-665d-447f-bc31-25cac1508445 {
  box-shadow:0px 0px 20px 5px rgba(189, 189, 189, 1);
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
}







  #s-8ae196ab-665d-447f-bc31-25cac1508445 img.shogun-image {
    

    
    
    
  }


#s-8ae196ab-665d-447f-bc31-25cac1508445 .shogun-image-content {
  
    align-items: center;
  
}

#s-bf97cc9f-3511-4de3-b366-cd27cf27d025 {
  margin-top: 25px;
margin-left: 20px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7d7b8b55-ffe4-407e-a9a5-a627254dd859"] > .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-93b9a194-2fd0-4c9d-b311-656cb904f9d0 {
  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-fdde85a0-1920-4f3d-8d11-c6af03a54473 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-5094fb84-d1a1-4fec-9b7b-1d09b4bcc79d {
  padding-top: 50px;
padding-left: 20px;
padding-bottom: 50px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-5094fb84-d1a1-4fec-9b7b-1d09b4bcc79d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5094fb84-d1a1-4fec-9b7b-1d09b4bcc79d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2de19f5-16a2-4aed-80f3-4c486d2b3604 {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-5d761943-b697-4e35-9003-c3b154820964"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d761943-b697-4e35-9003-c3b154820964"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5d761943-b697-4e35-9003-c3b154820964"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d761943-b697-4e35-9003-c3b154820964"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6a85f5f0-92d1-4019-9cc7-33bda154cece {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-6a85f5f0-92d1-4019-9cc7-33bda154cece > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a85f5f0-92d1-4019-9cc7-33bda154cece.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b16d30df-f8eb-4d4c-ae3a-ae51167cc62d {
  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-faa53b00-d51f-4a01-a3dc-87b4e3dfe40c {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-faa53b00-d51f-4a01-a3dc-87b4e3dfe40c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-faa53b00-d51f-4a01-a3dc-87b4e3dfe40c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-faa53b00-d51f-4a01-a3dc-87b4e3dfe40c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-faa53b00-d51f-4a01-a3dc-87b4e3dfe40c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-094f6fd0-53a8-4123-8675-813dbd3f83f0 {
  text-align: center;
}







  #s-094f6fd0-53a8-4123-8675-813dbd3f83f0 img.shogun-image {
    

    
    
    
  }


#s-094f6fd0-53a8-4123-8675-813dbd3f83f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-520eeac3-0383-468a-9c73-422a717fa221 {
  text-align: center;
}







  #s-520eeac3-0383-468a-9c73-422a717fa221 img.shogun-image {
    

    
    
    
  }


#s-520eeac3-0383-468a-9c73-422a717fa221 .shogun-image-content {
  
    align-items: center;
  
}

#s-c805262a-41c8-4802-ac35-abd6f66a37bc {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c805262a-41c8-4802-ac35-abd6f66a37bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c805262a-41c8-4802-ac35-abd6f66a37bc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c805262a-41c8-4802-ac35-abd6f66a37bc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c805262a-41c8-4802-ac35-abd6f66a37bc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e9ee7187-7f35-4d07-a552-ffca42659fdc {
  text-align: center;
}







  #s-e9ee7187-7f35-4d07-a552-ffca42659fdc img.shogun-image {
    

    
    
    
  }


#s-e9ee7187-7f35-4d07-a552-ffca42659fdc .shogun-image-content {
  
    align-items: center;
  
}

#s-b76c7590-5f85-4b56-821b-bdc9be73c51e {
  text-align: center;
}







  #s-b76c7590-5f85-4b56-821b-bdc9be73c51e img.shogun-image {
    

    
    
    
  }


#s-b76c7590-5f85-4b56-821b-bdc9be73c51e .shogun-image-content {
  
    align-items: center;
  
}

#s-fe93c03f-f356-4994-9b68-36b8d30672fd {
  min-height: 50px;
background-color: rgba(231, 231, 231, 1);
}








#s-fe93c03f-f356-4994-9b68-36b8d30672fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe93c03f-f356-4994-9b68-36b8d30672fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d51eb5b-7522-40f8-916f-516c9fdc7b2b {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-1d51eb5b-7522-40f8-916f-516c9fdc7b2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d51eb5b-7522-40f8-916f-516c9fdc7b2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1d51eb5b-7522-40f8-916f-516c9fdc7b2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d51eb5b-7522-40f8-916f-516c9fdc7b2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6811df2d-ff36-4502-8901-6ed2b7a0e7b7 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(0, 0, 0, 1);
}

#s-6a56b635-c884-4466-a31c-e7eb6756182d {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(0, 0, 0, 1);
}

#s-a46b9ffd-90c5-4396-9f80-0a5756825feb {
  min-height: 50px;
}








#s-a46b9ffd-90c5-4396-9f80-0a5756825feb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a46b9ffd-90c5-4396-9f80-0a5756825feb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f815f0bb-a9bd-45de-ac93-9576a36b3123 {
  min-height: 50px;
background-color: rgba(184, 184, 184, 1);
}








#s-f815f0bb-a9bd-45de-ac93-9576a36b3123 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f815f0bb-a9bd-45de-ac93-9576a36b3123.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c6375132-785e-4c01-88f2-8e2e7513eefa {
  padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}

#s-c1f6114d-6b46-445e-8f50-62bd69e5795f {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-c1f6114d-6b46-445e-8f50-62bd69e5795f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1f6114d-6b46-445e-8f50-62bd69e5795f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c1f6114d-6b46-445e-8f50-62bd69e5795f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1f6114d-6b46-445e-8f50-62bd69e5795f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-edcabfa0-e943-4b02-af91-ba691331fd89 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-edcabfa0-e943-4b02-af91-ba691331fd89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-edcabfa0-e943-4b02-af91-ba691331fd89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-828183d8-c2ce-40b6-aa63-1d4f90002037 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-68e68ff4-bfde-4d76-83df-6be961a37420 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-68e68ff4-bfde-4d76-83df-6be961a37420 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68e68ff4-bfde-4d76-83df-6be961a37420.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe5ed33e-fc75-4f9b-97ed-a91166e150ac {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-4b99ac32-e9da-43dd-b340-5319448f979c {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-4b99ac32-e9da-43dd-b340-5319448f979c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b99ac32-e9da-43dd-b340-5319448f979c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4b99ac32-e9da-43dd-b340-5319448f979c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b99ac32-e9da-43dd-b340-5319448f979c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5e9c6140-83a1-4d95-b8d9-3fb80ebd3bb8 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5e9c6140-83a1-4d95-b8d9-3fb80ebd3bb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5e9c6140-83a1-4d95-b8d9-3fb80ebd3bb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3d42df6-0ae9-4ad6-8164-2680f691d296 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-d26b1dc0-aa63-407f-b361-e68fe4dcda08 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d26b1dc0-aa63-407f-b361-e68fe4dcda08 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d26b1dc0-aa63-407f-b361-e68fe4dcda08.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-094adb62-0c62-48fe-a769-f741ba421b3b {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-a53ca09b-8a1a-4b62-b11a-869bbf1ba45e {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-a53ca09b-8a1a-4b62-b11a-869bbf1ba45e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a53ca09b-8a1a-4b62-b11a-869bbf1ba45e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a53ca09b-8a1a-4b62-b11a-869bbf1ba45e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a53ca09b-8a1a-4b62-b11a-869bbf1ba45e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ffef33a9-9970-4d52-8e0f-7fb1ff058792 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ffef33a9-9970-4d52-8e0f-7fb1ff058792 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffef33a9-9970-4d52-8e0f-7fb1ff058792.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65f9a00e-f5d2-4ca6-8763-c0257e92ac49 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-73ecc865-d329-43ca-85e6-7a9a4aacfc2a {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-73ecc865-d329-43ca-85e6-7a9a4aacfc2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73ecc865-d329-43ca-85e6-7a9a4aacfc2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b058ed60-9893-4d73-be23-7e434c9fc8b7 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-fc05695c-b88e-4e1e-91e5-dcffab78d67b {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-fc05695c-b88e-4e1e-91e5-dcffab78d67b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc05695c-b88e-4e1e-91e5-dcffab78d67b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fc05695c-b88e-4e1e-91e5-dcffab78d67b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc05695c-b88e-4e1e-91e5-dcffab78d67b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c4757bce-d20c-4579-9176-cb34c384271d {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c4757bce-d20c-4579-9176-cb34c384271d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4757bce-d20c-4579-9176-cb34c384271d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1a4b5c6-b7ba-4f9c-af7d-13f0f712a3fb {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-3b7dff85-3eeb-409a-ba7f-3b74816f8117 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-3b7dff85-3eeb-409a-ba7f-3b74816f8117 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b7dff85-3eeb-409a-ba7f-3b74816f8117.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac210ba9-ff58-48a6-b2ee-fe383b4cca66 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-94d41958-691a-4db7-8d86-2a2da206d39f {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-94d41958-691a-4db7-8d86-2a2da206d39f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94d41958-691a-4db7-8d86-2a2da206d39f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-94d41958-691a-4db7-8d86-2a2da206d39f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-94d41958-691a-4db7-8d86-2a2da206d39f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1fb9e6fa-a7b9-451c-b4dd-1e754fa466e6 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1fb9e6fa-a7b9-451c-b4dd-1e754fa466e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1fb9e6fa-a7b9-451c-b4dd-1e754fa466e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a16b1041-82b3-479d-8915-3731cd860df6 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-8373bef4-7862-4d37-a78c-a717d6b225b3 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8373bef4-7862-4d37-a78c-a717d6b225b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8373bef4-7862-4d37-a78c-a717d6b225b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d379a85-5fe1-498c-a0a3-0f7d326c4fe3 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-d2731e2c-c44e-451d-a297-4d1f4b5da13b {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-d2731e2c-c44e-451d-a297-4d1f4b5da13b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2731e2c-c44e-451d-a297-4d1f4b5da13b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2731e2c-c44e-451d-a297-4d1f4b5da13b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2731e2c-c44e-451d-a297-4d1f4b5da13b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6acbf899-a6c1-4934-9aa8-801986070071 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6acbf899-a6c1-4934-9aa8-801986070071 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6acbf899-a6c1-4934-9aa8-801986070071.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76902813-ce0c-4adb-bcab-211a62725a75 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-c7cddd85-fbfd-4d4f-bc9c-7c14ace7d196 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c7cddd85-fbfd-4d4f-bc9c-7c14ace7d196 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7cddd85-fbfd-4d4f-bc9c-7c14ace7d196.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0ce7147-02fc-4974-ac7c-a27f81500a0c {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-ad49524c-4f42-449c-bfe5-f6c6ed1e5b4c {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-ad49524c-4f42-449c-bfe5-f6c6ed1e5b4c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad49524c-4f42-449c-bfe5-f6c6ed1e5b4c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad49524c-4f42-449c-bfe5-f6c6ed1e5b4c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad49524c-4f42-449c-bfe5-f6c6ed1e5b4c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-427ac51b-59c4-46da-8f5f-403728ebaf2a {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-427ac51b-59c4-46da-8f5f-403728ebaf2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-427ac51b-59c4-46da-8f5f-403728ebaf2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6fc293c-0470-4804-ac18-fbdf358d185f {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-552eb810-e96b-4f12-85dc-6eea9b211a36 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-552eb810-e96b-4f12-85dc-6eea9b211a36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-552eb810-e96b-4f12-85dc-6eea9b211a36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0decf081-ee71-4faa-bca3-e334e254639e {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-5e113c2b-2930-4265-a4a8-9f3cd82b4ea8 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-5e113c2b-2930-4265-a4a8-9f3cd82b4ea8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e113c2b-2930-4265-a4a8-9f3cd82b4ea8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5e113c2b-2930-4265-a4a8-9f3cd82b4ea8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e113c2b-2930-4265-a4a8-9f3cd82b4ea8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0cd4a286-8b4c-4050-b742-37fa945f9d42 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0cd4a286-8b4c-4050-b742-37fa945f9d42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cd4a286-8b4c-4050-b742-37fa945f9d42.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-94332e51-e63c-44ef-9605-7bebda03aa06 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-594ee55d-cd19-487c-a5e9-adacf1accde3 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-594ee55d-cd19-487c-a5e9-adacf1accde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-594ee55d-cd19-487c-a5e9-adacf1accde3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d7a1b055-1921-4704-85c1-e10d93b2c650 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-59ce6e6e-79ff-4321-ae5a-281691208643 {
  margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
}

@media (min-width: 0px) {
[id="s-59ce6e6e-79ff-4321-ae5a-281691208643"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-59ce6e6e-79ff-4321-ae5a-281691208643"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-59ce6e6e-79ff-4321-ae5a-281691208643"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-59ce6e6e-79ff-4321-ae5a-281691208643"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-22610752-8b49-4199-b9c7-f1b9897b5a57 {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-22610752-8b49-4199-b9c7-f1b9897b5a57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22610752-8b49-4199-b9c7-f1b9897b5a57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4a51ec9-c6b6-4633-a759-6b895b389f73 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-6bb88033-2a0c-4706-b415-62e00f15f12d {
  margin-top: 15px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6bb88033-2a0c-4706-b415-62e00f15f12d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bb88033-2a0c-4706-b415-62e00f15f12d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2a7edc5-bec5-4436-9a59-25e4c34f8754 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-5cd8e837-33f4-4894-9ac8-1fcb55b16592 {
  padding-top: 25px;
padding-left: 20px;
padding-bottom: 25px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-5cd8e837-33f4-4894-9ac8-1fcb55b16592 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5cd8e837-33f4-4894-9ac8-1fcb55b16592.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-f0f4b4a8-4c78-4f1a-99fe-6056c437378a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0f4b4a8-4c78-4f1a-99fe-6056c437378a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0f4b4a8-4c78-4f1a-99fe-6056c437378a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0f4b4a8-4c78-4f1a-99fe-6056c437378a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2f977d32-f180-45de-954a-539fa2f45d13 .shogun-icon-wrapper {
  text-align: center;
}


#s-2f977d32-f180-45de-954a-539fa2f45d13 .shogun-icon-wrapper > .shogun-icon {

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

#s-4e5140b0-31cd-4b30-84db-26749eb8ef1c {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-4e5140b0-31cd-4b30-84db-26749eb8ef1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e5140b0-31cd-4b30-84db-26749eb8ef1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9c9787c-42e7-49d7-84c1-a10a983be512 .shogun-icon-wrapper {
  text-align: center;
}


#s-e9c9787c-42e7-49d7-84c1-a10a983be512 .shogun-icon-wrapper > .shogun-icon {

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

#s-95a8a56e-5f7e-4cb9-b6e7-2592d02291dc {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-95a8a56e-5f7e-4cb9-b6e7-2592d02291dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95a8a56e-5f7e-4cb9-b6e7-2592d02291dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-144bc816-3324-4a8a-9b9a-58d946c8194e {
  min-height: 50px;
}








#s-144bc816-3324-4a8a-9b9a-58d946c8194e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-144bc816-3324-4a8a-9b9a-58d946c8194e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bbe09a73-db3d-499c-ba94-4a0288fe25b1 {
  padding-top: 25px;
padding-bottom: 25px;
background-color: rgba(0, 0, 0, 1);
}

#s-c17e6246-1a0a-42a9-865c-9e35b5a1e50e {
  min-height: 50px;
}








#s-c17e6246-1a0a-42a9-865c-9e35b5a1e50e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c17e6246-1a0a-42a9-865c-9e35b5a1e50e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0dc822d3-63dd-42ee-8ab2-200f1b3124cb {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
min-height: 50px;
}








#s-0dc822d3-63dd-42ee-8ab2-200f1b3124cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0dc822d3-63dd-42ee-8ab2-200f1b3124cb.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-958a5480-6aa6-4034-851b-de5cdb61b020"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-958a5480-6aa6-4034-851b-de5cdb61b020"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-958a5480-6aa6-4034-851b-de5cdb61b020"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-958a5480-6aa6-4034-851b-de5cdb61b020"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-5a08009f-9b3a-4c5a-90dc-456033f3935d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5a08009f-9b3a-4c5a-90dc-456033f3935d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5a08009f-9b3a-4c5a-90dc-456033f3935d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a08009f-9b3a-4c5a-90dc-456033f3935d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 img.shogun-image,
  #s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 {
    width: 100%;
    height: auto;
  }



  #s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 img.shogun-image {
    

    
    
    
  }


#s-aeec13d3-56d2-4b71-838e-3fe1dad3b4b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-283d193e-0e1c-47be-b255-fdea084415ec {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-283d193e-0e1c-47be-b255-fdea084415ec img.shogun-image,
  #s-283d193e-0e1c-47be-b255-fdea084415ec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-283d193e-0e1c-47be-b255-fdea084415ec {
    width: 100%;
    height: auto;
  }



  #s-283d193e-0e1c-47be-b255-fdea084415ec img.shogun-image {
    

    
    
    
  }


#s-283d193e-0e1c-47be-b255-fdea084415ec .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-cdf5e811-a48f-499c-8f0e-4d351097641d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cdf5e811-a48f-499c-8f0e-4d351097641d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cdf5e811-a48f-499c-8f0e-4d351097641d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cdf5e811-a48f-499c-8f0e-4d351097641d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-bd0971df-b15f-4a59-8367-bad229cbf90e {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/279;
text-align: center;
}





  #s-bd0971df-b15f-4a59-8367-bad229cbf90e img.shogun-image,
  #s-bd0971df-b15f-4a59-8367-bad229cbf90e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bd0971df-b15f-4a59-8367-bad229cbf90e {
    width: 100%;
    height: auto;
  }



  #s-bd0971df-b15f-4a59-8367-bad229cbf90e img.shogun-image {
    

    
    
    
  }


#s-bd0971df-b15f-4a59-8367-bad229cbf90e .shogun-image-content {
  
    align-items: center;
  
}

#s-e1d1915f-efa8-4f1b-b253-a92de486a311 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 431px;
aspect-ratio: 431/278;
text-align: center;
}





  #s-e1d1915f-efa8-4f1b-b253-a92de486a311 img.shogun-image,
  #s-e1d1915f-efa8-4f1b-b253-a92de486a311 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e1d1915f-efa8-4f1b-b253-a92de486a311 {
    width: 100%;
    height: auto;
  }



  #s-e1d1915f-efa8-4f1b-b253-a92de486a311 img.shogun-image {
    

    
    
    
  }


#s-e1d1915f-efa8-4f1b-b253-a92de486a311 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5a6ac2a5-32cf-4527-9985-4effd1191952"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a6ac2a5-32cf-4527-9985-4effd1191952"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5a6ac2a5-32cf-4527-9985-4effd1191952"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a6ac2a5-32cf-4527-9985-4effd1191952"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-e001f9ee-b8e8-4ad7-b901-a2b9d0603650"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e001f9ee-b8e8-4ad7-b901-a2b9d0603650"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e001f9ee-b8e8-4ad7-b901-a2b9d0603650"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e001f9ee-b8e8-4ad7-b901-a2b9d0603650"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-47c8f413-8582-4f16-9bca-9fcdac713fae {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-47c8f413-8582-4f16-9bca-9fcdac713fae img.shogun-image {
    

    
    
    
  }


#s-47c8f413-8582-4f16-9bca-9fcdac713fae .shogun-image-content {
  
    align-items: center;
  
}

#s-9bf961e1-6bb7-4b6e-8046-18ca78aa9140 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-9bf961e1-6bb7-4b6e-8046-18ca78aa9140 img.shogun-image {
    

    
    
    
  }


#s-9bf961e1-6bb7-4b6e-8046-18ca78aa9140 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-4d5645db-08d5-4a8d-802e-eddec57289ea"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4d5645db-08d5-4a8d-802e-eddec57289ea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d5645db-08d5-4a8d-802e-eddec57289ea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d5645db-08d5-4a8d-802e-eddec57289ea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cacca88f-e41c-4eed-8072-788955fb3b83 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-cacca88f-e41c-4eed-8072-788955fb3b83 img.shogun-image {
    

    
    
    
  }


#s-cacca88f-e41c-4eed-8072-788955fb3b83 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ee14352-3695-4ac7-8429-6b9724eb6a00 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-5ee14352-3695-4ac7-8429-6b9724eb6a00 img.shogun-image {
    

    
    
    
  }


#s-5ee14352-3695-4ac7-8429-6b9724eb6a00 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ad883fc4-64a0-43b9-96e0-c9b180007caf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad883fc4-64a0-43b9-96e0-c9b180007caf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad883fc4-64a0-43b9-96e0-c9b180007caf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad883fc4-64a0-43b9-96e0-c9b180007caf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-3300c841-d36e-43ab-930f-63dbfb172963"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3300c841-d36e-43ab-930f-63dbfb172963"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3300c841-d36e-43ab-930f-63dbfb172963"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3300c841-d36e-43ab-930f-63dbfb172963"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1cd4ace1-c6cc-4877-9e04-9f3c784a6c6b {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-1cd4ace1-c6cc-4877-9e04-9f3c784a6c6b img.shogun-image {
    

    
    
    
  }


#s-1cd4ace1-c6cc-4877-9e04-9f3c784a6c6b .shogun-image-content {
  
    align-items: center;
  
}

#s-c0a9b838-d266-43fd-bc4f-ca73e0eaf109 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-c0a9b838-d266-43fd-bc4f-ca73e0eaf109 img.shogun-image {
    

    
    
    
  }


#s-c0a9b838-d266-43fd-bc4f-ca73e0eaf109 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-4bc72f30-48e9-46df-b33a-149b53a4cfad"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4bc72f30-48e9-46df-b33a-149b53a4cfad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4bc72f30-48e9-46df-b33a-149b53a4cfad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4bc72f30-48e9-46df-b33a-149b53a4cfad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3efeac6b-6be3-4aec-a3ea-cbeb7c1ac8fd {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-3efeac6b-6be3-4aec-a3ea-cbeb7c1ac8fd img.shogun-image {
    

    
    
    
  }


#s-3efeac6b-6be3-4aec-a3ea-cbeb7c1ac8fd .shogun-image-content {
  
    align-items: center;
  
}

#s-7859f2b7-aa18-42cd-82a8-6ede434384d5 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-7859f2b7-aa18-42cd-82a8-6ede434384d5 img.shogun-image {
    

    
    
    
  }


#s-7859f2b7-aa18-42cd-82a8-6ede434384d5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ada2952d-f568-40a1-bfb7-f4a346a308b2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ada2952d-f568-40a1-bfb7-f4a346a308b2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ada2952d-f568-40a1-bfb7-f4a346a308b2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ada2952d-f568-40a1-bfb7-f4a346a308b2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c65247eb-1ae1-4803-9896-72e3360fb6e1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c65247eb-1ae1-4803-9896-72e3360fb6e1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c65247eb-1ae1-4803-9896-72e3360fb6e1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c65247eb-1ae1-4803-9896-72e3360fb6e1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4b0e229a-9616-4790-a166-ed3adcdf341f {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-4b0e229a-9616-4790-a166-ed3adcdf341f img.shogun-image {
    

    
    
    
  }


#s-4b0e229a-9616-4790-a166-ed3adcdf341f .shogun-image-content {
  
    align-items: center;
  
}

#s-ce078db5-690a-414a-9b33-9103ef2b9c1a {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ce078db5-690a-414a-9b33-9103ef2b9c1a img.shogun-image {
    

    
    
    
  }


#s-ce078db5-690a-414a-9b33-9103ef2b9c1a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ecd2de22-d522-4594-b61b-a9dbc1fd4091"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ecd2de22-d522-4594-b61b-a9dbc1fd4091"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ecd2de22-d522-4594-b61b-a9dbc1fd4091"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecd2de22-d522-4594-b61b-a9dbc1fd4091"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-73ef3e21-b342-4e4a-b33f-7f89e1fa71ec {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-73ef3e21-b342-4e4a-b33f-7f89e1fa71ec img.shogun-image {
    

    
    
    
  }


#s-73ef3e21-b342-4e4a-b33f-7f89e1fa71ec .shogun-image-content {
  
    align-items: center;
  
}

#s-68f8ff1f-2228-4312-8046-24fb2be13b0c {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-68f8ff1f-2228-4312-8046-24fb2be13b0c img.shogun-image {
    

    
    
    
  }


#s-68f8ff1f-2228-4312-8046-24fb2be13b0c .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0563f586-fdaf-4b46-901e-0a73d0ce586f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0563f586-fdaf-4b46-901e-0a73d0ce586f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0563f586-fdaf-4b46-901e-0a73d0ce586f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0563f586-fdaf-4b46-901e-0a73d0ce586f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-d5757e05-840b-4846-ad2a-b5d8c6b117db"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d5757e05-840b-4846-ad2a-b5d8c6b117db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d5757e05-840b-4846-ad2a-b5d8c6b117db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d5757e05-840b-4846-ad2a-b5d8c6b117db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b0b59709-5774-49ad-95aa-8bc0122131a0 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-b0b59709-5774-49ad-95aa-8bc0122131a0 img.shogun-image {
    

    
    
    
  }


#s-b0b59709-5774-49ad-95aa-8bc0122131a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-0d670d13-c0d6-43a0-92b3-238dad175488 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-0d670d13-c0d6-43a0-92b3-238dad175488 img.shogun-image {
    

    
    
    
  }


#s-0d670d13-c0d6-43a0-92b3-238dad175488 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-6feb5766-e026-484e-9948-84cd9bd33305"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6feb5766-e026-484e-9948-84cd9bd33305"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6feb5766-e026-484e-9948-84cd9bd33305"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6feb5766-e026-484e-9948-84cd9bd33305"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0470338c-620a-43f0-8af2-f1c6b48558ec {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-0470338c-620a-43f0-8af2-f1c6b48558ec img.shogun-image {
    

    
    
    
  }


#s-0470338c-620a-43f0-8af2-f1c6b48558ec .shogun-image-content {
  
    align-items: center;
  
}

#s-7ebe3248-216c-46b8-bb92-4d93d4788e70 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-7ebe3248-216c-46b8-bb92-4d93d4788e70 img.shogun-image {
    

    
    
    
  }


#s-7ebe3248-216c-46b8-bb92-4d93d4788e70 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d2e33701-131f-4bfd-83c3-3035dfaff576"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2e33701-131f-4bfd-83c3-3035dfaff576"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2e33701-131f-4bfd-83c3-3035dfaff576"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2e33701-131f-4bfd-83c3-3035dfaff576"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-bb85fcc6-7937-41e3-be0f-9adfc85889c0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bb85fcc6-7937-41e3-be0f-9adfc85889c0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bb85fcc6-7937-41e3-be0f-9adfc85889c0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb85fcc6-7937-41e3-be0f-9adfc85889c0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-515861a1-bdc4-46e8-b238-8dfe1185ce8c {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-515861a1-bdc4-46e8-b238-8dfe1185ce8c img.shogun-image {
    

    
    
    
  }


#s-515861a1-bdc4-46e8-b238-8dfe1185ce8c .shogun-image-content {
  
    align-items: center;
  
}

#s-773492cb-ec98-44d0-b46c-7915b2c7e695 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-773492cb-ec98-44d0-b46c-7915b2c7e695 img.shogun-image {
    

    
    
    
  }


#s-773492cb-ec98-44d0-b46c-7915b2c7e695 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-b35c5b75-e22b-4e4b-9912-a2917eba7732"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b35c5b75-e22b-4e4b-9912-a2917eba7732"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b35c5b75-e22b-4e4b-9912-a2917eba7732"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b35c5b75-e22b-4e4b-9912-a2917eba7732"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-be743cb4-e991-4cff-8c13-41842a68cfca {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-be743cb4-e991-4cff-8c13-41842a68cfca img.shogun-image {
    

    
    
    
  }


#s-be743cb4-e991-4cff-8c13-41842a68cfca .shogun-image-content {
  
    align-items: center;
  
}

#s-5b38e99c-6180-4ef7-8f4f-26b2fb1a13f2 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-5b38e99c-6180-4ef7-8f4f-26b2fb1a13f2 img.shogun-image {
    

    
    
    
  }


#s-5b38e99c-6180-4ef7-8f4f-26b2fb1a13f2 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9e583541-40cc-4387-ad49-18117e735f8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e583541-40cc-4387-ad49-18117e735f8c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9e583541-40cc-4387-ad49-18117e735f8c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e583541-40cc-4387-ad49-18117e735f8c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-235e8a05-66e3-4ded-9fca-653b33dcf5db"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-235e8a05-66e3-4ded-9fca-653b33dcf5db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-235e8a05-66e3-4ded-9fca-653b33dcf5db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-235e8a05-66e3-4ded-9fca-653b33dcf5db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1d103282-5ad1-4bb1-9d36-5c8e8c81ef0d {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-1d103282-5ad1-4bb1-9d36-5c8e8c81ef0d img.shogun-image {
    

    
    
    
  }


#s-1d103282-5ad1-4bb1-9d36-5c8e8c81ef0d .shogun-image-content {
  
    align-items: center;
  
}

#s-abc45f00-3822-4867-b5b4-936068b52b19 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-abc45f00-3822-4867-b5b4-936068b52b19 img.shogun-image {
    

    
    
    
  }


#s-abc45f00-3822-4867-b5b4-936068b52b19 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-70e5b54b-1187-440c-9f6d-6bc2e07886bf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-70e5b54b-1187-440c-9f6d-6bc2e07886bf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70e5b54b-1187-440c-9f6d-6bc2e07886bf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70e5b54b-1187-440c-9f6d-6bc2e07886bf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2867a374-4afc-40f0-b5ba-60312bc052b5 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-2867a374-4afc-40f0-b5ba-60312bc052b5 img.shogun-image {
    

    
    
    
  }


#s-2867a374-4afc-40f0-b5ba-60312bc052b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-99bda637-2e20-4b0c-85f4-a8c6277b50ef {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-99bda637-2e20-4b0c-85f4-a8c6277b50ef img.shogun-image {
    

    
    
    
  }


#s-99bda637-2e20-4b0c-85f4-a8c6277b50ef .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-dc26fd9d-6b3f-4487-8592-8b9a058a754d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dc26fd9d-6b3f-4487-8592-8b9a058a754d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dc26fd9d-6b3f-4487-8592-8b9a058a754d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dc26fd9d-6b3f-4487-8592-8b9a058a754d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-9aeca398-da31-4418-86f9-2dfc3871bffc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9aeca398-da31-4418-86f9-2dfc3871bffc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9aeca398-da31-4418-86f9-2dfc3871bffc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9aeca398-da31-4418-86f9-2dfc3871bffc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1947da50-ad17-47e9-bc3b-e092e2470733 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-1947da50-ad17-47e9-bc3b-e092e2470733 img.shogun-image {
    

    
    
    
  }


#s-1947da50-ad17-47e9-bc3b-e092e2470733 .shogun-image-content {
  
    align-items: center;
  
}

#s-37d67bab-e229-4c93-83c4-cb681869be1f {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-37d67bab-e229-4c93-83c4-cb681869be1f img.shogun-image {
    

    
    
    
  }


#s-37d67bab-e229-4c93-83c4-cb681869be1f .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-4d80c9e7-3c3f-4a92-b336-e59eb3a7a051"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4d80c9e7-3c3f-4a92-b336-e59eb3a7a051"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d80c9e7-3c3f-4a92-b336-e59eb3a7a051"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d80c9e7-3c3f-4a92-b336-e59eb3a7a051"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-52ffec2c-3749-476d-89fb-15b634bccdbf {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-52ffec2c-3749-476d-89fb-15b634bccdbf img.shogun-image {
    

    
    
    
  }


#s-52ffec2c-3749-476d-89fb-15b634bccdbf .shogun-image-content {
  
    align-items: center;
  
}

#s-21b30cc2-e792-4890-bd94-a6b2db617ac1 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-21b30cc2-e792-4890-bd94-a6b2db617ac1 img.shogun-image {
    

    
    
    
  }


#s-21b30cc2-e792-4890-bd94-a6b2db617ac1 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0c5a3ac0-2f6a-47f9-9c70-f4458d13e880"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c5a3ac0-2f6a-47f9-9c70-f4458d13e880"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c5a3ac0-2f6a-47f9-9c70-f4458d13e880"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c5a3ac0-2f6a-47f9-9c70-f4458d13e880"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-33f9313e-1b4e-499a-9a65-e593af9864a5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-33f9313e-1b4e-499a-9a65-e593af9864a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33f9313e-1b4e-499a-9a65-e593af9864a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33f9313e-1b4e-499a-9a65-e593af9864a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-93ed43ca-c59d-45cd-9de4-e614c6fb997d {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-93ed43ca-c59d-45cd-9de4-e614c6fb997d img.shogun-image {
    

    
    
    
  }


#s-93ed43ca-c59d-45cd-9de4-e614c6fb997d .shogun-image-content {
  
    align-items: center;
  
}

#s-12e195fd-14d0-4240-b648-0e2d059fbbe4 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-12e195fd-14d0-4240-b648-0e2d059fbbe4 img.shogun-image {
    

    
    
    
  }


#s-12e195fd-14d0-4240-b648-0e2d059fbbe4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-79d948f4-0f07-4fba-8564-9473c3236e5c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-79d948f4-0f07-4fba-8564-9473c3236e5c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-79d948f4-0f07-4fba-8564-9473c3236e5c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-79d948f4-0f07-4fba-8564-9473c3236e5c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9df564a4-7ed7-4db6-94a6-eca7cb911c6c {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-9df564a4-7ed7-4db6-94a6-eca7cb911c6c img.shogun-image {
    

    
    
    
  }


#s-9df564a4-7ed7-4db6-94a6-eca7cb911c6c .shogun-image-content {
  
    align-items: center;
  
}

#s-20d0c35a-1dfd-4038-bbf6-6a71b0f0e633 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-20d0c35a-1dfd-4038-bbf6-6a71b0f0e633 img.shogun-image {
    

    
    
    
  }


#s-20d0c35a-1dfd-4038-bbf6-6a71b0f0e633 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-8f0ec036-308d-43d5-84c2-80073bc7b219"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f0ec036-308d-43d5-84c2-80073bc7b219"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8f0ec036-308d-43d5-84c2-80073bc7b219"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f0ec036-308d-43d5-84c2-80073bc7b219"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-306c7c80-8755-4df9-bd85-ca2081525ce9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-306c7c80-8755-4df9-bd85-ca2081525ce9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-306c7c80-8755-4df9-bd85-ca2081525ce9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-306c7c80-8755-4df9-bd85-ca2081525ce9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-311da817-689d-41db-9e31-7d916a983f45 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-311da817-689d-41db-9e31-7d916a983f45 img.shogun-image {
    

    
    
    
  }


#s-311da817-689d-41db-9e31-7d916a983f45 .shogun-image-content {
  
    align-items: center;
  
}

#s-a09c6bd3-42a6-43bf-b620-cafb2ab9e9ef {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-a09c6bd3-42a6-43bf-b620-cafb2ab9e9ef img.shogun-image {
    

    
    
    
  }


#s-a09c6bd3-42a6-43bf-b620-cafb2ab9e9ef .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-fa0e1e12-40aa-4667-aa7e-68e728b667dc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-fa0e1e12-40aa-4667-aa7e-68e728b667dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fa0e1e12-40aa-4667-aa7e-68e728b667dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa0e1e12-40aa-4667-aa7e-68e728b667dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ac624200-e25a-412c-b548-299a9d304b9e {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-ac624200-e25a-412c-b548-299a9d304b9e img.shogun-image {
    

    
    
    
  }


#s-ac624200-e25a-412c-b548-299a9d304b9e .shogun-image-content {
  
    align-items: center;
  
}

#s-790886f7-bd22-4bd4-90de-e6b0d2419da5 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-790886f7-bd22-4bd4-90de-e6b0d2419da5 img.shogun-image {
    

    
    
    
  }


#s-790886f7-bd22-4bd4-90de-e6b0d2419da5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-825c3ca4-f7f7-4e05-9049-4960894af633"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-825c3ca4-f7f7-4e05-9049-4960894af633"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-825c3ca4-f7f7-4e05-9049-4960894af633"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-825c3ca4-f7f7-4e05-9049-4960894af633"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c08ca471-8c07-442f-bcb6-e462939bd442"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c08ca471-8c07-442f-bcb6-e462939bd442"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c08ca471-8c07-442f-bcb6-e462939bd442"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c08ca471-8c07-442f-bcb6-e462939bd442"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9c3274af-1e0c-46bf-88b5-424af820481b {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-9c3274af-1e0c-46bf-88b5-424af820481b img.shogun-image {
    

    
    
    
  }


#s-9c3274af-1e0c-46bf-88b5-424af820481b .shogun-image-content {
  
    align-items: center;
  
}

#s-6a5057d1-9765-4aed-b186-305c2c9336db {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-6a5057d1-9765-4aed-b186-305c2c9336db img.shogun-image {
    

    
    
    
  }


#s-6a5057d1-9765-4aed-b186-305c2c9336db .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-b43bc4e4-5526-4383-b948-015dd2f2aaa9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b43bc4e4-5526-4383-b948-015dd2f2aaa9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b43bc4e4-5526-4383-b948-015dd2f2aaa9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b43bc4e4-5526-4383-b948-015dd2f2aaa9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a7cad11d-b5f2-4266-a9f4-e8ba42f0169b {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-a7cad11d-b5f2-4266-a9f4-e8ba42f0169b img.shogun-image {
    

    
    
    
  }


#s-a7cad11d-b5f2-4266-a9f4-e8ba42f0169b .shogun-image-content {
  
    align-items: center;
  
}

#s-02c43808-23a6-454e-87f7-c05a03568183 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-02c43808-23a6-454e-87f7-c05a03568183 img.shogun-image {
    

    
    
    
  }


#s-02c43808-23a6-454e-87f7-c05a03568183 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e722a7b-27da-43a4-94ad-1c7af2d34afb {
  min-height: 50px;
}








#s-1e722a7b-27da-43a4-94ad-1c7af2d34afb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e722a7b-27da-43a4-94ad-1c7af2d34afb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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