.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-d8899e56-d6fe-4916-b5ad-2bb0ebb9957e {
  margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-d8899e56-d6fe-4916-b5ad-2bb0ebb9957e {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-d8899e56-d6fe-4916-b5ad-2bb0ebb9957e {
  margin-left: 5%;
margin-right: 5%;
}
}







#s-d8899e56-d6fe-4916-b5ad-2bb0ebb9957e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d8899e56-d6fe-4916-b5ad-2bb0ebb9957e.shg-box.shg-c {
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-22bedf58-a504-4e38-873f-1e107d5edd5d {
  margin-top: 50px;
margin-bottom: 80px;
text-align: left;
}
@media (min-width: 1200px){#s-22bedf58-a504-4e38-873f-1e107d5edd5d {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-22bedf58-a504-4e38-873f-1e107d5edd5d {
  margin-left: 15%;
margin-right: 15%;
}
}

  #s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(141, 141, 141, 1);
  }
  #s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid rgba(141, 141, 141, 1);
  }
#s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-22bedf58-a504-4e38-873f-1e107d5edd5d .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(141, 141, 141, 1);
}

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.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-628a38e9-6ba7-4e9b-93ac-38c5c487fa5f {
  margin-top: 10px;
}

#s-8eb70303-fc38-49e1-a4ca-e3801352743e {
  margin-top: 10px;
}

.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-92520ed1-00ce-4f96-8ada-3c94878761cf {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-92520ed1-00ce-4f96-8ada-3c94878761cf {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-92520ed1-00ce-4f96-8ada-3c94878761cf .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-92520ed1-00ce-4f96-8ada-3c94878761cf .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-92520ed1-00ce-4f96-8ada-3c94878761cf .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


}
#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 {
  margin-left: 15%;
margin-right: 15%;
}
}
#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-28d32047-6f8b-4d3d-9e3e-ba17c12b0d09 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

@media (min-width: 1200px){#s-5bc318f4-f3a6-4142-a5b4-8a614914e8d9 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5bc318f4-f3a6-4142-a5b4-8a614914e8d9 {
  margin-left: 15%;
margin-right: 15%;
}
}
#s-5bc318f4-f3a6-4142-a5b4-8a614914e8d9 hr {
  border-top: 2px solid #ddd;
}

#s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 30px;
margin-right: 15%;
text-align: left;
}


  #s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-8562ecf5-3847-4e85-9fbd-57e341b6a3a1 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-9df1594e-5d4f-411d-8811-8789c5ab99e8 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9df1594e-5d4f-411d-8811-8789c5ab99e8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
  overflow-x: hidden;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-39ec3fc3-6f24-4381-8f8e-e0215910b225 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-39ec3fc3-6f24-4381-8f8e-e0215910b225 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-39ec3fc3-6f24-4381-8f8e-e0215910b225 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-39ec3fc3-6f24-4381-8f8e-e0215910b225 .shg-sld-nav-button.shg-sld-left,
#s-39ec3fc3-6f24-4381-8f8e-e0215910b225 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  margin: 0 !important;
  overflow: visible;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add background color handling */
  
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-content {
  
    justify-content: center;
  
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
  box-sizing: border-box;
}



.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
      position: relative;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  margin: 0 !important;
  overflow: visible;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add background color handling */
  
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-content {
  
    justify-content: center;
  
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
  box-sizing: border-box;
}



.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
      position: relative;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  margin: 0 !important;
  overflow: visible;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add background color handling */
  
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-content {
  
    justify-content: center;
  
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
  box-sizing: border-box;
}



.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
      position: relative;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  margin: 0 !important;
  overflow: visible;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add background color handling */
  
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-content {
  
    justify-content: center;
  
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
  box-sizing: border-box;
}



.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
      position: relative;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  margin: 0 !important;
  overflow: visible;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add background color handling */
  
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 .shogun-image-content {
  
    justify-content: center;
  
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image {
  box-sizing: border-box;
}



.s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container {
      position: relative;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48d57205-2d75-460e-9cb4-2ea8a1ede119 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  text-align: center;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  margin: 0 !important;
  overflow: visible;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add background color handling */
  
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
    
    
    
    
  }


.s-569ec890-e3b3-4762-adc4-11b767ead382 .shogun-image-content {
  
    justify-content: center;
  
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
  box-sizing: border-box;
}



.s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  
}


@media (min-width: 1200px){#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  margin: 0 !important;
  overflow: visible;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add background color handling */
  
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
    
    
    
    
  }


.s-569ec890-e3b3-4762-adc4-11b767ead382 .shogun-image-content {
  
    justify-content: center;
  
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
  box-sizing: border-box;
}



.s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  margin: 0 !important;
  overflow: visible;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add background color handling */
  
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
    
    
    
    
  }


.s-569ec890-e3b3-4762-adc4-11b767ead382 .shogun-image-content {
  
    justify-content: center;
  
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
  box-sizing: border-box;
}



.s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  margin: 0 !important;
  overflow: visible;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add background color handling */
  
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
    
    
    
    
  }


.s-569ec890-e3b3-4762-adc4-11b767ead382 .shogun-image-content {
  
    justify-content: center;
  
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
  box-sizing: border-box;
}



.s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  
}


}@media (max-width: 767px){#s-569ec890-e3b3-4762-adc4-11b767ead382 {
  margin: 0 !important;
  overflow: visible;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-569ec890-e3b3-4762-adc4-11b767ead382 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add background color handling */
  
}

#s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
    
    
    
    
  }


.s-569ec890-e3b3-4762-adc4-11b767ead382 .shogun-image-content {
  
    justify-content: center;
  
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shg-align-container {
  display: flex;
  justify-content: center
}

.s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-569ec890-e3b3-4762-adc4-11b767ead382.shogun-image {
  box-sizing: border-box;
}



.s-569ec890-e3b3-4762-adc4-11b767ead382 img.shogun-image {
  
}


}
#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  text-align: center;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  margin: 0 !important;
  overflow: visible;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add background color handling */
  
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
    
    
    
    
  }


.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
  box-sizing: border-box;
}



.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  
}


@media (min-width: 1200px){#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  margin: 0 !important;
  overflow: visible;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add background color handling */
  
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
    
    
    
    
  }


.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
  box-sizing: border-box;
}



.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  margin: 0 !important;
  overflow: visible;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add background color handling */
  
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
    
    
    
    
  }


.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
  box-sizing: border-box;
}



.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  margin: 0 !important;
  overflow: visible;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add background color handling */
  
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
    
    
    
    
  }


.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
  box-sizing: border-box;
}



.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  
}


}@media (max-width: 767px){#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  margin: 0 !important;
  overflow: visible;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-743c976e-5b9b-41c7-ad51-1e70ce07af51 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add background color handling */
  
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
    
    
    
    
  }


.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 .shogun-image-content {
  
    justify-content: center;
  
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-743c976e-5b9b-41c7-ad51-1e70ce07af51.shogun-image {
  box-sizing: border-box;
}



.s-743c976e-5b9b-41c7-ad51-1e70ce07af51 img.shogun-image {
  
}


}
#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  text-align: center;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  margin: 0 !important;
  overflow: visible;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add background color handling */
  
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
    
    
    
    
  }


.s-634e1bab-2cc6-4335-a201-a404b4580105 .shogun-image-content {
  
    justify-content: center;
  
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
  box-sizing: border-box;
}



.s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  
}


@media (min-width: 1200px){#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  margin: 0 !important;
  overflow: visible;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add background color handling */
  
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
    
    
    
    
  }


.s-634e1bab-2cc6-4335-a201-a404b4580105 .shogun-image-content {
  
    justify-content: center;
  
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
  box-sizing: border-box;
}



.s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  margin: 0 !important;
  overflow: visible;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add background color handling */
  
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
    
    
    
    
  }


.s-634e1bab-2cc6-4335-a201-a404b4580105 .shogun-image-content {
  
    justify-content: center;
  
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
  box-sizing: border-box;
}



.s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  margin: 0 !important;
  overflow: visible;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add background color handling */
  
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
    
    
    
    
  }


.s-634e1bab-2cc6-4335-a201-a404b4580105 .shogun-image-content {
  
    justify-content: center;
  
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
  box-sizing: border-box;
}



.s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  
}


}@media (max-width: 767px){#s-634e1bab-2cc6-4335-a201-a404b4580105 {
  margin: 0 !important;
  overflow: visible;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-634e1bab-2cc6-4335-a201-a404b4580105 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add background color handling */
  
}

#s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
    
    
    
    
  }


.s-634e1bab-2cc6-4335-a201-a404b4580105 .shogun-image-content {
  
    justify-content: center;
  
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634e1bab-2cc6-4335-a201-a404b4580105.shogun-image {
  box-sizing: border-box;
}



.s-634e1bab-2cc6-4335-a201-a404b4580105 img.shogun-image {
  
}


}
#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
  box-sizing: border-box;
}



.s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
      position: relative;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
  box-sizing: border-box;
}



.s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
      position: relative;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
  box-sizing: border-box;
}



.s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
      position: relative;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
  box-sizing: border-box;
}



.s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
      position: relative;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  margin: 0 !important;
  overflow: visible;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add background color handling */
  
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-a6e9704f-3828-4264-89ed-17a79fc16b82 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image {
  box-sizing: border-box;
}



.s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container {
      position: relative;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a6e9704f-3828-4264-89ed-17a79fc16b82 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
  box-sizing: border-box;
}



.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
      position: relative;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
  box-sizing: border-box;
}



.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
      position: relative;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
  box-sizing: border-box;
}



.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
      position: relative;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
  box-sizing: border-box;
}



.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
      position: relative;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image {
  box-sizing: border-box;
}



.s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container {
      position: relative;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d45036cd-8daf-4ee5-94a1-d25fe7b7b2b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  margin: 0 !important;
  overflow: visible;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add background color handling */
  
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
  box-sizing: border-box;
}



.s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
      position: relative;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  margin: 0 !important;
  overflow: visible;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add background color handling */
  
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
  box-sizing: border-box;
}



.s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
      position: relative;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  margin: 0 !important;
  overflow: visible;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add background color handling */
  
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
  box-sizing: border-box;
}



.s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
      position: relative;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  margin: 0 !important;
  overflow: visible;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add background color handling */
  
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
  box-sizing: border-box;
}



.s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
      position: relative;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  margin: 0 !important;
  overflow: visible;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add background color handling */
  
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e6ff14ec-d33f-47a0-84ed-02b673838aac .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image {
  box-sizing: border-box;
}



.s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container {
      position: relative;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e6ff14ec-d33f-47a0-84ed-02b673838aac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-819af6c1-1b28-40cc-9a6f-c0a513b81b57 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-819af6c1-1b28-40cc-9a6f-c0a513b81b57 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-ec3baad3-05a0-463c-b144-60569d3e14e4 {
  margin-bottom: 10px;
}

#s-9bf26bd7-f7f7-44c4-86ee-32005987b9e2 {
  margin-bottom: 10px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-aa8a473c-875c-47e4-87d6-625f336e3415 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-aa8a473c-875c-47e4-87d6-625f336e3415:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-aa8a473c-875c-47e4-87d6-625f336e3415:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-aa8a473c-875c-47e4-87d6-625f336e3415-root {
    text-align: left;
  }


#s-aa8a473c-875c-47e4-87d6-625f336e3415.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aa8a473c-875c-47e4-87d6-625f336e3415-root {
    text-align: left;
  }


#s-aa8a473c-875c-47e4-87d6-625f336e3415.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aa8a473c-875c-47e4-87d6-625f336e3415-root {
    text-align: left;
  }


#s-aa8a473c-875c-47e4-87d6-625f336e3415.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aa8a473c-875c-47e4-87d6-625f336e3415-root {
    text-align: left;
  }


#s-aa8a473c-875c-47e4-87d6-625f336e3415.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aa8a473c-875c-47e4-87d6-625f336e3415-root {
    text-align: left;
  }


#s-aa8a473c-875c-47e4-87d6-625f336e3415.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-19522f04-7c10-4cf0-9f04-cf46725a1b7f {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-19522f04-7c10-4cf0-9f04-cf46725a1b7f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-717fd1ea-8135-4835-9b95-50200f70852a {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-717fd1ea-8135-4835-9b95-50200f70852a {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-717fd1ea-8135-4835-9b95-50200f70852a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-717fd1ea-8135-4835-9b95-50200f70852a .shg-sld-nav-button.shg-sld-left,
#s-717fd1ea-8135-4835-9b95-50200f70852a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
  box-sizing: border-box;
}



.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
      position: relative;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
  box-sizing: border-box;
}



.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
      position: relative;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
  box-sizing: border-box;
}



.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
      position: relative;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
  box-sizing: border-box;
}



.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
      position: relative;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image {
  box-sizing: border-box;
}



.s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container {
      position: relative;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e9c372b-a8ef-4b89-a2a2-0e1932ef9072 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  text-align: center;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  margin: 0 !important;
  overflow: visible;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add background color handling */
  
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
    
    
    
    
  }


.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
  box-sizing: border-box;
}



.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  
}


@media (min-width: 1200px){#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  margin: 0 !important;
  overflow: visible;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add background color handling */
  
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
    
    
    
    
  }


.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
  box-sizing: border-box;
}



.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  margin: 0 !important;
  overflow: visible;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add background color handling */
  
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
    
    
    
    
  }


.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
  box-sizing: border-box;
}



.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  margin: 0 !important;
  overflow: visible;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add background color handling */
  
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
    
    
    
    
  }


.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
  box-sizing: border-box;
}



.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  
}


}@media (max-width: 767px){#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  margin: 0 !important;
  overflow: visible;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4a94a320-11b5-43eb-a403-4564cbb7bb44 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add background color handling */
  
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
    
    
    
    
  }


.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 .shogun-image-content {
  
    justify-content: center;
  
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a94a320-11b5-43eb-a403-4564cbb7bb44.shogun-image {
  box-sizing: border-box;
}



.s-4a94a320-11b5-43eb-a403-4564cbb7bb44 img.shogun-image {
  
}


}
#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  text-align: center;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  margin: 0 !important;
  overflow: visible;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add background color handling */
  
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
    
    
    
    
  }


.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
  box-sizing: border-box;
}



.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  
}


@media (min-width: 1200px){#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  margin: 0 !important;
  overflow: visible;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add background color handling */
  
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
    
    
    
    
  }


.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
  box-sizing: border-box;
}



.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  margin: 0 !important;
  overflow: visible;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add background color handling */
  
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
    
    
    
    
  }


.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
  box-sizing: border-box;
}



.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  margin: 0 !important;
  overflow: visible;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add background color handling */
  
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
    
    
    
    
  }


.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
  box-sizing: border-box;
}



.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  
}


}@media (max-width: 767px){#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  margin: 0 !important;
  overflow: visible;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3629df9c-966d-4d58-8736-cc8ac8f6c20c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add background color handling */
  
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
    
    
    
    
  }


.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c .shogun-image-content {
  
    justify-content: center;
  
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3629df9c-966d-4d58-8736-cc8ac8f6c20c.shogun-image {
  box-sizing: border-box;
}



.s-3629df9c-966d-4d58-8736-cc8ac8f6c20c img.shogun-image {
  
}


}
#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  text-align: center;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  margin: 0 !important;
  overflow: visible;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add background color handling */
  
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
    
    
    
    
  }


.s-a06abf40-f703-4377-8808-6d013d3b0c9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
  box-sizing: border-box;
}



.s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  
}


@media (min-width: 1200px){#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  margin: 0 !important;
  overflow: visible;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add background color handling */
  
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
    
    
    
    
  }


.s-a06abf40-f703-4377-8808-6d013d3b0c9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
  box-sizing: border-box;
}



.s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  margin: 0 !important;
  overflow: visible;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add background color handling */
  
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
    
    
    
    
  }


.s-a06abf40-f703-4377-8808-6d013d3b0c9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
  box-sizing: border-box;
}



.s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  margin: 0 !important;
  overflow: visible;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add background color handling */
  
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
    
    
    
    
  }


.s-a06abf40-f703-4377-8808-6d013d3b0c9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
  box-sizing: border-box;
}



.s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  
}


}@media (max-width: 767px){#s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  margin: 0 !important;
  overflow: visible;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a06abf40-f703-4377-8808-6d013d3b0c9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add background color handling */
  
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
    
    
    
    
  }


.s-a06abf40-f703-4377-8808-6d013d3b0c9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06abf40-f703-4377-8808-6d013d3b0c9e.shogun-image {
  box-sizing: border-box;
}



.s-a06abf40-f703-4377-8808-6d013d3b0c9e img.shogun-image {
  
}


}
#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  margin: 0 !important;
  overflow: visible;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add background color handling */
  
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
  box-sizing: border-box;
}



.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
      position: relative;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  margin: 0 !important;
  overflow: visible;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add background color handling */
  
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
  box-sizing: border-box;
}



.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
      position: relative;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  margin: 0 !important;
  overflow: visible;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add background color handling */
  
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
  box-sizing: border-box;
}



.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
      position: relative;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  margin: 0 !important;
  overflow: visible;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add background color handling */
  
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
  box-sizing: border-box;
}



.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
      position: relative;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  margin: 0 !important;
  overflow: visible;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add background color handling */
  
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image {
  box-sizing: border-box;
}



.s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container {
      position: relative;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43b76d12-a76b-42e6-b4da-f4eaad48acb3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  margin: 0 !important;
  overflow: visible;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add background color handling */
  
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
  box-sizing: border-box;
}



.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
      position: relative;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  margin: 0 !important;
  overflow: visible;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add background color handling */
  
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
  box-sizing: border-box;
}



.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
      position: relative;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  margin: 0 !important;
  overflow: visible;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add background color handling */
  
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
  box-sizing: border-box;
}



.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
      position: relative;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  margin: 0 !important;
  overflow: visible;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add background color handling */
  
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
  box-sizing: border-box;
}



.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
      position: relative;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  margin: 0 !important;
  overflow: visible;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add background color handling */
  
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image {
  box-sizing: border-box;
}



.s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container {
      position: relative;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-10f8e480-13f5-4010-a8e7-be8f3fd23280 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  margin: 0 !important;
  overflow: visible;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add background color handling */
  
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
  box-sizing: border-box;
}



.s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09124517-4e1b-44f4-822e-bb813d8437f0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
      position: relative;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  margin: 0 !important;
  overflow: visible;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add background color handling */
  
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
  box-sizing: border-box;
}



.s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09124517-4e1b-44f4-822e-bb813d8437f0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
      position: relative;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  margin: 0 !important;
  overflow: visible;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add background color handling */
  
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
  box-sizing: border-box;
}



.s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09124517-4e1b-44f4-822e-bb813d8437f0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
      position: relative;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  margin: 0 !important;
  overflow: visible;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add background color handling */
  
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
  box-sizing: border-box;
}



.s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09124517-4e1b-44f4-822e-bb813d8437f0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
      position: relative;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  margin: 0 !important;
  overflow: visible;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09124517-4e1b-44f4-822e-bb813d8437f0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add background color handling */
  
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09124517-4e1b-44f4-822e-bb813d8437f0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09124517-4e1b-44f4-822e-bb813d8437f0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image {
  box-sizing: border-box;
}



.s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09124517-4e1b-44f4-822e-bb813d8437f0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container {
      position: relative;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09124517-4e1b-44f4-822e-bb813d8437f0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-24f20b89-3e63-4128-9b6b-0863d9b325a8 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-24f20b89-3e63-4128-9b6b-0863d9b325a8 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-75e41be3-ed3c-42d9-9c56-a00bde247b27 {
  margin-bottom: 10px;
}

#s-280f7b44-66ea-4fda-bb9c-0511e9d224d7 {
  margin-bottom: 10px;
}

#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16-root {
    text-align: left;
  }


#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16-root {
    text-align: left;
  }


#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16-root {
    text-align: left;
  }


#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16-root {
    text-align: left;
  }


#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16-root {
    text-align: left;
  }


#s-640cbdf2-96b2-48d4-b5c7-fc543a1c6e16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-07275100-7fd8-45b9-9191-24eaaa507deb {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-07275100-7fd8-45b9-9191-24eaaa507deb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-8196dd6c-efc2-40d0-a70a-de81a1db05c9 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-8196dd6c-efc2-40d0-a70a-de81a1db05c9 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-8196dd6c-efc2-40d0-a70a-de81a1db05c9 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8196dd6c-efc2-40d0-a70a-de81a1db05c9 .shg-sld-nav-button.shg-sld-left,
#s-8196dd6c-efc2-40d0-a70a-de81a1db05c9 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-614ed049-72ce-40aa-b45f-949639508844 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-614ed049-72ce-40aa-b45f-949639508844 {
  margin: 0 !important;
  overflow: visible;
}

#s-614ed049-72ce-40aa-b45f-949639508844-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add background color handling */
  
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-content {
  
    justify-content: center;
  
}

.s-614ed049-72ce-40aa-b45f-949639508844.shg-align-container {
  display: flex;
  justify-content: center
}

.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
  box-sizing: border-box;
}



.s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-614ed049-72ce-40aa-b45f-949639508844 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
      position: relative;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-614ed049-72ce-40aa-b45f-949639508844 {
  margin: 0 !important;
  overflow: visible;
}

#s-614ed049-72ce-40aa-b45f-949639508844-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add background color handling */
  
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-content {
  
    justify-content: center;
  
}

.s-614ed049-72ce-40aa-b45f-949639508844.shg-align-container {
  display: flex;
  justify-content: center
}

.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
  box-sizing: border-box;
}



.s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-614ed049-72ce-40aa-b45f-949639508844 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
      position: relative;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-614ed049-72ce-40aa-b45f-949639508844 {
  margin: 0 !important;
  overflow: visible;
}

#s-614ed049-72ce-40aa-b45f-949639508844-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add background color handling */
  
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-content {
  
    justify-content: center;
  
}

.s-614ed049-72ce-40aa-b45f-949639508844.shg-align-container {
  display: flex;
  justify-content: center
}

.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
  box-sizing: border-box;
}



.s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-614ed049-72ce-40aa-b45f-949639508844 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
      position: relative;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-614ed049-72ce-40aa-b45f-949639508844 {
  margin: 0 !important;
  overflow: visible;
}

#s-614ed049-72ce-40aa-b45f-949639508844-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add background color handling */
  
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-content {
  
    justify-content: center;
  
}

.s-614ed049-72ce-40aa-b45f-949639508844.shg-align-container {
  display: flex;
  justify-content: center
}

.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
  box-sizing: border-box;
}



.s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-614ed049-72ce-40aa-b45f-949639508844 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
      position: relative;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-614ed049-72ce-40aa-b45f-949639508844 {
  margin: 0 !important;
  overflow: visible;
}

#s-614ed049-72ce-40aa-b45f-949639508844-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-614ed049-72ce-40aa-b45f-949639508844 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add background color handling */
  
}

#s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-614ed049-72ce-40aa-b45f-949639508844 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-614ed049-72ce-40aa-b45f-949639508844 .shogun-image-content {
  
    justify-content: center;
  
}

.s-614ed049-72ce-40aa-b45f-949639508844.shg-align-container {
  display: flex;
  justify-content: center
}

.s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-614ed049-72ce-40aa-b45f-949639508844.shogun-image {
  box-sizing: border-box;
}



.s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-614ed049-72ce-40aa-b45f-949639508844 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container {
      position: relative;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-614ed049-72ce-40aa-b45f-949639508844.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-614ed049-72ce-40aa-b45f-949639508844 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-96e224de-0963-41b2-855f-8ebf4510096a {
  text-align: center;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a {
  margin: 0 !important;
  overflow: visible;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add background color handling */
  
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
    
    
    
    
  }


.s-96e224de-0963-41b2-855f-8ebf4510096a .shogun-image-content {
  
    justify-content: center;
  
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
  box-sizing: border-box;
}



.s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  
}


@media (min-width: 1200px){#s-96e224de-0963-41b2-855f-8ebf4510096a {
  margin: 0 !important;
  overflow: visible;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add background color handling */
  
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
    
    
    
    
  }


.s-96e224de-0963-41b2-855f-8ebf4510096a .shogun-image-content {
  
    justify-content: center;
  
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
  box-sizing: border-box;
}



.s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-96e224de-0963-41b2-855f-8ebf4510096a {
  margin: 0 !important;
  overflow: visible;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add background color handling */
  
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
    
    
    
    
  }


.s-96e224de-0963-41b2-855f-8ebf4510096a .shogun-image-content {
  
    justify-content: center;
  
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
  box-sizing: border-box;
}



.s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-96e224de-0963-41b2-855f-8ebf4510096a {
  margin: 0 !important;
  overflow: visible;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add background color handling */
  
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
    
    
    
    
  }


.s-96e224de-0963-41b2-855f-8ebf4510096a .shogun-image-content {
  
    justify-content: center;
  
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
  box-sizing: border-box;
}



.s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  
}


}@media (max-width: 767px){#s-96e224de-0963-41b2-855f-8ebf4510096a {
  margin: 0 !important;
  overflow: visible;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-96e224de-0963-41b2-855f-8ebf4510096a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add background color handling */
  
}

#s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
    
    
    
    
  }


.s-96e224de-0963-41b2-855f-8ebf4510096a .shogun-image-content {
  
    justify-content: center;
  
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e224de-0963-41b2-855f-8ebf4510096a.shogun-image {
  box-sizing: border-box;
}



.s-96e224de-0963-41b2-855f-8ebf4510096a img.shogun-image {
  
}


}
#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  text-align: center;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  margin: 0 !important;
  overflow: visible;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add background color handling */
  
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
    
    
    
    
  }


.s-481e697c-3e43-44b6-a3da-c8a85d04db77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
  box-sizing: border-box;
}



.s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  
}


@media (min-width: 1200px){#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  margin: 0 !important;
  overflow: visible;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add background color handling */
  
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
    
    
    
    
  }


.s-481e697c-3e43-44b6-a3da-c8a85d04db77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
  box-sizing: border-box;
}



.s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  margin: 0 !important;
  overflow: visible;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add background color handling */
  
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
    
    
    
    
  }


.s-481e697c-3e43-44b6-a3da-c8a85d04db77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
  box-sizing: border-box;
}



.s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  margin: 0 !important;
  overflow: visible;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add background color handling */
  
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
    
    
    
    
  }


.s-481e697c-3e43-44b6-a3da-c8a85d04db77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
  box-sizing: border-box;
}



.s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  
}


}@media (max-width: 767px){#s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  margin: 0 !important;
  overflow: visible;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-481e697c-3e43-44b6-a3da-c8a85d04db77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add background color handling */
  
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
    
    
    
    
  }


.s-481e697c-3e43-44b6-a3da-c8a85d04db77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-481e697c-3e43-44b6-a3da-c8a85d04db77.shogun-image {
  box-sizing: border-box;
}



.s-481e697c-3e43-44b6-a3da-c8a85d04db77 img.shogun-image {
  
}


}
#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  text-align: center;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
    
    
    
    
  }


.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
  box-sizing: border-box;
}



.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
    
    
    
    
  }


.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
  box-sizing: border-box;
}



.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
    
    
    
    
  }


.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
  box-sizing: border-box;
}



.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
    
    
    
    
  }


.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
  box-sizing: border-box;
}



.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  margin: 0 !important;
  overflow: visible;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add background color handling */
  
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
    
    
    
    
  }


.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e389ed8-5c43-4c90-a626-07a7a29a3d80.shogun-image {
  box-sizing: border-box;
}



.s-2e389ed8-5c43-4c90-a626-07a7a29a3d80 img.shogun-image {
  
}


}
#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  margin: 0 !important;
  overflow: visible;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add background color handling */
  
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
  box-sizing: border-box;
}



.s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77c669be-54f5-4e4d-8a4e-db048da912ce {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
      position: relative;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  margin: 0 !important;
  overflow: visible;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add background color handling */
  
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
  box-sizing: border-box;
}



.s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77c669be-54f5-4e4d-8a4e-db048da912ce {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
      position: relative;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  margin: 0 !important;
  overflow: visible;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add background color handling */
  
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
  box-sizing: border-box;
}



.s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77c669be-54f5-4e4d-8a4e-db048da912ce {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
      position: relative;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  margin: 0 !important;
  overflow: visible;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add background color handling */
  
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
  box-sizing: border-box;
}



.s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77c669be-54f5-4e4d-8a4e-db048da912ce {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
      position: relative;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  margin: 0 !important;
  overflow: visible;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-77c669be-54f5-4e4d-8a4e-db048da912ce {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add background color handling */
  
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77c669be-54f5-4e4d-8a4e-db048da912ce .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-77c669be-54f5-4e4d-8a4e-db048da912ce .shogun-image-content {
  
    justify-content: center;
  
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image {
  box-sizing: border-box;
}



.s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-77c669be-54f5-4e4d-8a4e-db048da912ce {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container {
      position: relative;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77c669be-54f5-4e4d-8a4e-db048da912ce img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  margin: 0 !important;
  overflow: visible;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add background color handling */
  
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
  box-sizing: border-box;
}



.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
      position: relative;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  margin: 0 !important;
  overflow: visible;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add background color handling */
  
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
  box-sizing: border-box;
}



.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
      position: relative;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  margin: 0 !important;
  overflow: visible;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add background color handling */
  
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
  box-sizing: border-box;
}



.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
      position: relative;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  margin: 0 !important;
  overflow: visible;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add background color handling */
  
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
  box-sizing: border-box;
}



.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
      position: relative;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  margin: 0 !important;
  overflow: visible;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add background color handling */
  
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e .shogun-image-content {
  
    justify-content: center;
  
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image {
  box-sizing: border-box;
}



.s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container {
      position: relative;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bd3d8b3-68cf-4409-b440-400fe1c4fe0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
  box-sizing: border-box;
}



.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
      position: relative;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
  box-sizing: border-box;
}



.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
      position: relative;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
  box-sizing: border-box;
}



.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
      position: relative;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
  box-sizing: border-box;
}



.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
      position: relative;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image {
  box-sizing: border-box;
}



.s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container {
      position: relative;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22eb5c7d-6b44-42a5-83fb-a8ed687b52f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-88591941-a097-4940-aa17-56f92d0ec477 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-88591941-a097-4940-aa17-56f92d0ec477 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-57c49f05-ff2d-4330-b345-9a0227dbf344 {
  margin-bottom: 10px;
}

#s-7bcddd72-3071-4213-a447-b4cb9c674060 {
  margin-bottom: 10px;
}

#s-73edc281-9a63-420d-ba92-57dd84bdd45c {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-73edc281-9a63-420d-ba92-57dd84bdd45c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-73edc281-9a63-420d-ba92-57dd84bdd45c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-73edc281-9a63-420d-ba92-57dd84bdd45c-root {
    text-align: left;
  }


#s-73edc281-9a63-420d-ba92-57dd84bdd45c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-73edc281-9a63-420d-ba92-57dd84bdd45c-root {
    text-align: left;
  }


#s-73edc281-9a63-420d-ba92-57dd84bdd45c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-73edc281-9a63-420d-ba92-57dd84bdd45c-root {
    text-align: left;
  }


#s-73edc281-9a63-420d-ba92-57dd84bdd45c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-73edc281-9a63-420d-ba92-57dd84bdd45c-root {
    text-align: left;
  }


#s-73edc281-9a63-420d-ba92-57dd84bdd45c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-73edc281-9a63-420d-ba92-57dd84bdd45c-root {
    text-align: left;
  }


#s-73edc281-9a63-420d-ba92-57dd84bdd45c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
.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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb {
  margin-left: 15%;
margin-bottom: 80px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(218, 218, 218, 1);
  padding: 10px;
}

#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-0f23f7ba-d3f2-4567-bee1-424cb4eaafcb > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 13px;
}
#s-5591e89b-ee4f-4084-9bae-50c19019f743 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-5591e89b-ee4f-4084-9bae-50c19019f743 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5cb35830-5ca8-4c1e-b332-c7d0f90968ee"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-d3c87abc-334c-4273-ada1-0dc53e7dd248 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-d3c87abc-334c-4273-ada1-0dc53e7dd248 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-d3c87abc-334c-4273-ada1-0dc53e7dd248 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d3c87abc-334c-4273-ada1-0dc53e7dd248 .shg-sld-nav-button.shg-sld-left,
#s-d3c87abc-334c-4273-ada1-0dc53e7dd248 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  margin: 0 !important;
  overflow: visible;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add background color handling */
  
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
  box-sizing: border-box;
}



.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
      position: relative;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  margin: 0 !important;
  overflow: visible;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add background color handling */
  
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
  box-sizing: border-box;
}



.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
      position: relative;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  margin: 0 !important;
  overflow: visible;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add background color handling */
  
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
  box-sizing: border-box;
}



.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
      position: relative;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  margin: 0 !important;
  overflow: visible;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add background color handling */
  
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
  box-sizing: border-box;
}



.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
      position: relative;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  margin: 0 !important;
  overflow: visible;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add background color handling */
  
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image {
  box-sizing: border-box;
}



.s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container {
      position: relative;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9b207ed5-b449-414a-a21b-6e51fe4a8c53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  text-align: center;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  margin: 0 !important;
  overflow: visible;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add background color handling */
  
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
    
    
    
    
  }


.s-6661b96c-da8e-4cd2-8780-5923f933c215 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
  box-sizing: border-box;
}



.s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  
}


@media (min-width: 1200px){#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  margin: 0 !important;
  overflow: visible;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add background color handling */
  
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
    
    
    
    
  }


.s-6661b96c-da8e-4cd2-8780-5923f933c215 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
  box-sizing: border-box;
}



.s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  margin: 0 !important;
  overflow: visible;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add background color handling */
  
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
    
    
    
    
  }


.s-6661b96c-da8e-4cd2-8780-5923f933c215 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
  box-sizing: border-box;
}



.s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  margin: 0 !important;
  overflow: visible;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add background color handling */
  
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
    
    
    
    
  }


.s-6661b96c-da8e-4cd2-8780-5923f933c215 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
  box-sizing: border-box;
}



.s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  
}


}@media (max-width: 767px){#s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  margin: 0 !important;
  overflow: visible;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6661b96c-da8e-4cd2-8780-5923f933c215 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add background color handling */
  
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
    
    
    
    
  }


.s-6661b96c-da8e-4cd2-8780-5923f933c215 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6661b96c-da8e-4cd2-8780-5923f933c215.shogun-image {
  box-sizing: border-box;
}



.s-6661b96c-da8e-4cd2-8780-5923f933c215 img.shogun-image {
  
}


}
#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  text-align: center;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  margin: 0 !important;
  overflow: visible;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add background color handling */
  
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
    
    
    
    
  }


.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
  box-sizing: border-box;
}



.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  
}


@media (min-width: 1200px){#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  margin: 0 !important;
  overflow: visible;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add background color handling */
  
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
    
    
    
    
  }


.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
  box-sizing: border-box;
}



.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  margin: 0 !important;
  overflow: visible;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add background color handling */
  
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
    
    
    
    
  }


.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
  box-sizing: border-box;
}



.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  margin: 0 !important;
  overflow: visible;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add background color handling */
  
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
    
    
    
    
  }


.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
  box-sizing: border-box;
}



.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  
}


}@media (max-width: 767px){#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  margin: 0 !important;
  overflow: visible;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add background color handling */
  
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
    
    
    
    
  }


.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c.shogun-image {
  box-sizing: border-box;
}



.s-eb31553b-0535-43fd-b7ef-7d6ac435eb4c img.shogun-image {
  
}


}
#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  text-align: center;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
    
    
    
    
  }


.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
  box-sizing: border-box;
}



.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  
}


@media (min-width: 1200px){#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
    
    
    
    
  }


.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
  box-sizing: border-box;
}



.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
    
    
    
    
  }


.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
  box-sizing: border-box;
}



.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
    
    
    
    
  }


.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
  box-sizing: border-box;
}



.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  
}


}@media (max-width: 767px){#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  margin: 0 !important;
  overflow: visible;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5e446f1-4ddc-4b3f-be05-f828f14733ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add background color handling */
  
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
    
    
    
    
  }


.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5e446f1-4ddc-4b3f-be05-f828f14733ba.shogun-image {
  box-sizing: border-box;
}



.s-e5e446f1-4ddc-4b3f-be05-f828f14733ba img.shogun-image {
  
}


}
#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
  box-sizing: border-box;
}



.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
      position: relative;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
  box-sizing: border-box;
}



.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
      position: relative;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
  box-sizing: border-box;
}



.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
      position: relative;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
  box-sizing: border-box;
}



.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
      position: relative;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  margin: 0 !important;
  overflow: visible;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add background color handling */
  
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 .shogun-image-content {
  
    justify-content: center;
  
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image {
  box-sizing: border-box;
}



.s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container {
      position: relative;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35c0e6ed-edfa-4d7f-bcf8-a6257c0e8a77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
  box-sizing: border-box;
}



.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
      position: relative;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
  box-sizing: border-box;
}



.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
      position: relative;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
  box-sizing: border-box;
}



.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
      position: relative;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
  box-sizing: border-box;
}



.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
      position: relative;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  margin: 0 !important;
  overflow: visible;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add background color handling */
  
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image {
  box-sizing: border-box;
}



.s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container {
      position: relative;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d5f5c69-0fb5-474d-ab03-7b2253c22259 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-d70cffe3-3145-4285-9212-555a8e811efd {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd {
  margin: 0 !important;
  overflow: visible;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add background color handling */
  
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-content {
  
    justify-content: center;
  
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
  box-sizing: border-box;
}



.s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d70cffe3-3145-4285-9212-555a8e811efd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
      position: relative;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-d70cffe3-3145-4285-9212-555a8e811efd {
  margin: 0 !important;
  overflow: visible;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add background color handling */
  
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-content {
  
    justify-content: center;
  
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
  box-sizing: border-box;
}



.s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d70cffe3-3145-4285-9212-555a8e811efd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
      position: relative;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d70cffe3-3145-4285-9212-555a8e811efd {
  margin: 0 !important;
  overflow: visible;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add background color handling */
  
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-content {
  
    justify-content: center;
  
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
  box-sizing: border-box;
}



.s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d70cffe3-3145-4285-9212-555a8e811efd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
      position: relative;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d70cffe3-3145-4285-9212-555a8e811efd {
  margin: 0 !important;
  overflow: visible;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add background color handling */
  
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-content {
  
    justify-content: center;
  
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
  box-sizing: border-box;
}



.s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d70cffe3-3145-4285-9212-555a8e811efd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
      position: relative;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-d70cffe3-3145-4285-9212-555a8e811efd {
  margin: 0 !important;
  overflow: visible;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d70cffe3-3145-4285-9212-555a8e811efd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add background color handling */
  
}

#s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d70cffe3-3145-4285-9212-555a8e811efd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d70cffe3-3145-4285-9212-555a8e811efd .shogun-image-content {
  
    justify-content: center;
  
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image {
  box-sizing: border-box;
}



.s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d70cffe3-3145-4285-9212-555a8e811efd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container {
      position: relative;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d70cffe3-3145-4285-9212-555a8e811efd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4b2caa35-0a1f-4e18-ae17-33bce811a03a {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4b2caa35-0a1f-4e18-ae17-33bce811a03a .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-070afe50-419a-4783-8072-cc879ca942dc {
  margin-bottom: 10px;
}

#s-1813f0f6-2be4-4448-8737-450cb76fc2e5 {
  margin-bottom: 10px;
}

#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42-root {
    text-align: left;
  }


#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42-root {
    text-align: left;
  }


#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42-root {
    text-align: left;
  }


#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42-root {
    text-align: left;
  }


#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42-root {
    text-align: left;
  }


#s-4f3bf4c2-63ad-4a88-a21d-3062f4393a42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-27be0aec-1dac-496a-a277-e0688a328cc3 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-27be0aec-1dac-496a-a277-e0688a328cc3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-7cebf6c7-d7a4-4402-acc3-2b9fa73a1adf {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-7cebf6c7-d7a4-4402-acc3-2b9fa73a1adf {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-7cebf6c7-d7a4-4402-acc3-2b9fa73a1adf .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-7cebf6c7-d7a4-4402-acc3-2b9fa73a1adf .shg-sld-nav-button.shg-sld-left,
#s-7cebf6c7-d7a4-4402-acc3-2b9fa73a1adf .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  margin: 0 !important;
  overflow: visible;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add background color handling */
  
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
  box-sizing: border-box;
}



.s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f52f520-0572-4a30-976f-11b36047bd58 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
      position: relative;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  margin: 0 !important;
  overflow: visible;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add background color handling */
  
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
  box-sizing: border-box;
}



.s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f52f520-0572-4a30-976f-11b36047bd58 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
      position: relative;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  margin: 0 !important;
  overflow: visible;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add background color handling */
  
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
  box-sizing: border-box;
}



.s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f52f520-0572-4a30-976f-11b36047bd58 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
      position: relative;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  margin: 0 !important;
  overflow: visible;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add background color handling */
  
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
  box-sizing: border-box;
}



.s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f52f520-0572-4a30-976f-11b36047bd58 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
      position: relative;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-2f52f520-0572-4a30-976f-11b36047bd58 {
  margin: 0 !important;
  overflow: visible;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2f52f520-0572-4a30-976f-11b36047bd58 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add background color handling */
  
}

#s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2f52f520-0572-4a30-976f-11b36047bd58 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2f52f520-0572-4a30-976f-11b36047bd58 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image {
  box-sizing: border-box;
}



.s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2f52f520-0572-4a30-976f-11b36047bd58 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container {
      position: relative;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2f52f520-0572-4a30-976f-11b36047bd58 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  text-align: center;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  margin: 0 !important;
  overflow: visible;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add background color handling */
  
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
    
    
    
    
  }


.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
  box-sizing: border-box;
}



.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  
}


@media (min-width: 1200px){#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  margin: 0 !important;
  overflow: visible;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add background color handling */
  
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
    
    
    
    
  }


.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
  box-sizing: border-box;
}



.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  margin: 0 !important;
  overflow: visible;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add background color handling */
  
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
    
    
    
    
  }


.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
  box-sizing: border-box;
}



.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  margin: 0 !important;
  overflow: visible;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add background color handling */
  
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
    
    
    
    
  }


.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
  box-sizing: border-box;
}



.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  
}


}@media (max-width: 767px){#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  margin: 0 !important;
  overflow: visible;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add background color handling */
  
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
    
    
    
    
  }


.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca .shogun-image-content {
  
    justify-content: center;
  
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca.shogun-image {
  box-sizing: border-box;
}



.s-70ce0964-91d4-4fa8-9f1b-a7d81f6773ca img.shogun-image {
  
}


}
#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  text-align: center;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  margin: 0 !important;
  overflow: visible;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add background color handling */
  
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
    
    
    
    
  }


.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
  box-sizing: border-box;
}



.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  
}


@media (min-width: 1200px){#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  margin: 0 !important;
  overflow: visible;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add background color handling */
  
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
    
    
    
    
  }


.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
  box-sizing: border-box;
}



.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  margin: 0 !important;
  overflow: visible;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add background color handling */
  
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
    
    
    
    
  }


.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
  box-sizing: border-box;
}



.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  margin: 0 !important;
  overflow: visible;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add background color handling */
  
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
    
    
    
    
  }


.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
  box-sizing: border-box;
}



.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  
}


}@media (max-width: 767px){#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  margin: 0 !important;
  overflow: visible;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a438d19-93a6-45b0-a97c-05bf17bbb62c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add background color handling */
  
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
    
    
    
    
  }


.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a438d19-93a6-45b0-a97c-05bf17bbb62c.shogun-image {
  box-sizing: border-box;
}



.s-1a438d19-93a6-45b0-a97c-05bf17bbb62c img.shogun-image {
  
}


}
#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  text-align: center;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  margin: 0 !important;
  overflow: visible;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add background color handling */
  
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
    
    
    
    
  }


.s-2621d57f-38a5-41aa-95b1-c77786a5b620 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
  box-sizing: border-box;
}



.s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  margin: 0 !important;
  overflow: visible;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add background color handling */
  
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
    
    
    
    
  }


.s-2621d57f-38a5-41aa-95b1-c77786a5b620 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
  box-sizing: border-box;
}



.s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  margin: 0 !important;
  overflow: visible;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add background color handling */
  
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
    
    
    
    
  }


.s-2621d57f-38a5-41aa-95b1-c77786a5b620 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
  box-sizing: border-box;
}



.s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  margin: 0 !important;
  overflow: visible;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add background color handling */
  
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
    
    
    
    
  }


.s-2621d57f-38a5-41aa-95b1-c77786a5b620 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
  box-sizing: border-box;
}



.s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  margin: 0 !important;
  overflow: visible;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2621d57f-38a5-41aa-95b1-c77786a5b620 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add background color handling */
  
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
    
    
    
    
  }


.s-2621d57f-38a5-41aa-95b1-c77786a5b620 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2621d57f-38a5-41aa-95b1-c77786a5b620.shogun-image {
  box-sizing: border-box;
}



.s-2621d57f-38a5-41aa-95b1-c77786a5b620 img.shogun-image {
  
}


}
#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  margin: 0 !important;
  overflow: visible;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add background color handling */
  
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
  box-sizing: border-box;
}



.s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1d59de88-b193-4941-bb98-26ed6ea1709a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
      position: relative;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  margin: 0 !important;
  overflow: visible;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add background color handling */
  
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
  box-sizing: border-box;
}



.s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1d59de88-b193-4941-bb98-26ed6ea1709a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
      position: relative;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  margin: 0 !important;
  overflow: visible;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add background color handling */
  
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
  box-sizing: border-box;
}



.s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1d59de88-b193-4941-bb98-26ed6ea1709a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
      position: relative;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  margin: 0 !important;
  overflow: visible;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add background color handling */
  
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
  box-sizing: border-box;
}



.s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1d59de88-b193-4941-bb98-26ed6ea1709a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
      position: relative;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  margin: 0 !important;
  overflow: visible;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1d59de88-b193-4941-bb98-26ed6ea1709a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add background color handling */
  
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d59de88-b193-4941-bb98-26ed6ea1709a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1d59de88-b193-4941-bb98-26ed6ea1709a .shogun-image-content {
  
    justify-content: center;
  
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image {
  box-sizing: border-box;
}



.s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1d59de88-b193-4941-bb98-26ed6ea1709a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container {
      position: relative;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d59de88-b193-4941-bb98-26ed6ea1709a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  margin: 0 !important;
  overflow: visible;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add background color handling */
  
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
  box-sizing: border-box;
}



.s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7556645a-53be-4f28-a86a-89a302904ff2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
      position: relative;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  margin: 0 !important;
  overflow: visible;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add background color handling */
  
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
  box-sizing: border-box;
}



.s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7556645a-53be-4f28-a86a-89a302904ff2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
      position: relative;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  margin: 0 !important;
  overflow: visible;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add background color handling */
  
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
  box-sizing: border-box;
}



.s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7556645a-53be-4f28-a86a-89a302904ff2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
      position: relative;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  margin: 0 !important;
  overflow: visible;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add background color handling */
  
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
  box-sizing: border-box;
}



.s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7556645a-53be-4f28-a86a-89a302904ff2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
      position: relative;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-7556645a-53be-4f28-a86a-89a302904ff2 {
  margin: 0 !important;
  overflow: visible;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7556645a-53be-4f28-a86a-89a302904ff2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add background color handling */
  
}

#s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7556645a-53be-4f28-a86a-89a302904ff2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7556645a-53be-4f28-a86a-89a302904ff2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image {
  box-sizing: border-box;
}



.s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7556645a-53be-4f28-a86a-89a302904ff2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container {
      position: relative;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7556645a-53be-4f28-a86a-89a302904ff2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  margin: 0 !important;
  overflow: visible;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add background color handling */
  
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
  box-sizing: border-box;
}



.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
      position: relative;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  margin: 0 !important;
  overflow: visible;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add background color handling */
  
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
  box-sizing: border-box;
}



.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
      position: relative;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  margin: 0 !important;
  overflow: visible;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add background color handling */
  
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
  box-sizing: border-box;
}



.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
      position: relative;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  margin: 0 !important;
  overflow: visible;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add background color handling */
  
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
  box-sizing: border-box;
}



.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
      position: relative;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  margin: 0 !important;
  overflow: visible;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add background color handling */
  
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b .shogun-image-content {
  
    justify-content: center;
  
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image {
  box-sizing: border-box;
}



.s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container {
      position: relative;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d6f894a-b22c-460b-9db9-d4f74f19b62b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-f4d531e7-6086-4745-80cc-bd2aee8401b9 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f4d531e7-6086-4745-80cc-bd2aee8401b9 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-81e583ab-c6fa-4009-9012-c75694ff5410 {
  margin-bottom: 10px;
}

#s-0355980a-76ee-43ec-bb35-9a0eb0d26821 {
  margin-bottom: 10px;
}

#s-de8c36d3-cf14-4926-a04e-5d8becda0969 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-de8c36d3-cf14-4926-a04e-5d8becda0969:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-de8c36d3-cf14-4926-a04e-5d8becda0969:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-de8c36d3-cf14-4926-a04e-5d8becda0969-root {
    text-align: left;
  }


#s-de8c36d3-cf14-4926-a04e-5d8becda0969.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-de8c36d3-cf14-4926-a04e-5d8becda0969-root {
    text-align: left;
  }


#s-de8c36d3-cf14-4926-a04e-5d8becda0969.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de8c36d3-cf14-4926-a04e-5d8becda0969-root {
    text-align: left;
  }


#s-de8c36d3-cf14-4926-a04e-5d8becda0969.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de8c36d3-cf14-4926-a04e-5d8becda0969-root {
    text-align: left;
  }


#s-de8c36d3-cf14-4926-a04e-5d8becda0969.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-de8c36d3-cf14-4926-a04e-5d8becda0969-root {
    text-align: left;
  }


#s-de8c36d3-cf14-4926-a04e-5d8becda0969.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6301eec0-d95d-441e-bc6f-bd5cdc0aa72e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-5394eb83-bec3-4ae2-98a6-290ded5879fa {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-5394eb83-bec3-4ae2-98a6-290ded5879fa {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-5394eb83-bec3-4ae2-98a6-290ded5879fa .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-5394eb83-bec3-4ae2-98a6-290ded5879fa .shg-sld-nav-button.shg-sld-left,
#s-5394eb83-bec3-4ae2-98a6-290ded5879fa .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
  box-sizing: border-box;
}



.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
      position: relative;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
  box-sizing: border-box;
}



.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
      position: relative;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
  box-sizing: border-box;
}



.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
      position: relative;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
  box-sizing: border-box;
}



.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
      position: relative;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  margin: 0 !important;
  overflow: visible;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add background color handling */
  
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image {
  box-sizing: border-box;
}



.s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container {
      position: relative;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9eefa12c-396b-4f90-8cb8-b10acfc49003 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  text-align: center;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  margin: 0 !important;
  overflow: visible;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add background color handling */
  
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
    
    
    
    
  }


.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
  box-sizing: border-box;
}



.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  
}


@media (min-width: 1200px){#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  margin: 0 !important;
  overflow: visible;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add background color handling */
  
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
    
    
    
    
  }


.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
  box-sizing: border-box;
}



.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  margin: 0 !important;
  overflow: visible;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add background color handling */
  
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
    
    
    
    
  }


.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
  box-sizing: border-box;
}



.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  margin: 0 !important;
  overflow: visible;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add background color handling */
  
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
    
    
    
    
  }


.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
  box-sizing: border-box;
}



.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  
}


}@media (max-width: 767px){#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  margin: 0 !important;
  overflow: visible;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add background color handling */
  
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
    
    
    
    
  }


.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e.shogun-image {
  box-sizing: border-box;
}



.s-c0dd9b52-002b-4203-ba3f-0b3d0d2acd2e img.shogun-image {
  
}


}
#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  text-align: center;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  margin: 0 !important;
  overflow: visible;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add background color handling */
  
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
    
    
    
    
  }


.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
  box-sizing: border-box;
}



.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  
}


@media (min-width: 1200px){#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  margin: 0 !important;
  overflow: visible;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add background color handling */
  
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
    
    
    
    
  }


.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
  box-sizing: border-box;
}



.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  margin: 0 !important;
  overflow: visible;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add background color handling */
  
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
    
    
    
    
  }


.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
  box-sizing: border-box;
}



.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  margin: 0 !important;
  overflow: visible;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add background color handling */
  
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
    
    
    
    
  }


.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
  box-sizing: border-box;
}



.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  
}


}@media (max-width: 767px){#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  margin: 0 !important;
  overflow: visible;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add background color handling */
  
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
    
    
    
    
  }


.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e6464dfa-c483-4987-8a9b-99ea6e89ac14.shogun-image {
  box-sizing: border-box;
}



.s-e6464dfa-c483-4987-8a9b-99ea6e89ac14 img.shogun-image {
  
}


}
#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  text-align: center;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  margin: 0 !important;
  overflow: visible;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add background color handling */
  
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
    
    
    
    
  }


.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
  box-sizing: border-box;
}



.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  
}


@media (min-width: 1200px){#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  margin: 0 !important;
  overflow: visible;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add background color handling */
  
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
    
    
    
    
  }


.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
  box-sizing: border-box;
}



.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  margin: 0 !important;
  overflow: visible;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add background color handling */
  
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
    
    
    
    
  }


.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
  box-sizing: border-box;
}



.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  margin: 0 !important;
  overflow: visible;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add background color handling */
  
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
    
    
    
    
  }


.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
  box-sizing: border-box;
}



.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  
}


}@media (max-width: 767px){#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  margin: 0 !important;
  overflow: visible;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add background color handling */
  
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
    
    
    
    
  }


.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e .shogun-image-content {
  
    justify-content: center;
  
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e.shogun-image {
  box-sizing: border-box;
}



.s-c5ad8ca0-9dbe-4053-b961-1b8b758a0f7e img.shogun-image {
  
}


}
#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  margin: 0 !important;
  overflow: visible;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add background color handling */
  
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-content {
  
    justify-content: center;
  
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
  box-sizing: border-box;
}



.s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45ba7394-7514-4436-8fc8-c6e80db61474 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
      position: relative;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  margin: 0 !important;
  overflow: visible;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add background color handling */
  
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-content {
  
    justify-content: center;
  
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
  box-sizing: border-box;
}



.s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45ba7394-7514-4436-8fc8-c6e80db61474 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
      position: relative;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  margin: 0 !important;
  overflow: visible;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add background color handling */
  
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-content {
  
    justify-content: center;
  
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
  box-sizing: border-box;
}



.s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45ba7394-7514-4436-8fc8-c6e80db61474 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
      position: relative;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  margin: 0 !important;
  overflow: visible;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add background color handling */
  
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-content {
  
    justify-content: center;
  
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
  box-sizing: border-box;
}



.s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45ba7394-7514-4436-8fc8-c6e80db61474 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
      position: relative;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  margin: 0 !important;
  overflow: visible;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45ba7394-7514-4436-8fc8-c6e80db61474 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add background color handling */
  
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45ba7394-7514-4436-8fc8-c6e80db61474 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-45ba7394-7514-4436-8fc8-c6e80db61474 .shogun-image-content {
  
    justify-content: center;
  
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image {
  box-sizing: border-box;
}



.s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45ba7394-7514-4436-8fc8-c6e80db61474 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container {
      position: relative;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45ba7394-7514-4436-8fc8-c6e80db61474 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  margin: 0 !important;
  overflow: visible;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add background color handling */
  
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
  box-sizing: border-box;
}



.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
      position: relative;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  margin: 0 !important;
  overflow: visible;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add background color handling */
  
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
  box-sizing: border-box;
}



.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
      position: relative;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  margin: 0 !important;
  overflow: visible;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add background color handling */
  
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
  box-sizing: border-box;
}



.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
      position: relative;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  margin: 0 !important;
  overflow: visible;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add background color handling */
  
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
  box-sizing: border-box;
}



.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
      position: relative;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  margin: 0 !important;
  overflow: visible;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add background color handling */
  
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image {
  box-sizing: border-box;
}



.s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container {
      position: relative;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8eef18b3-33c3-4ed5-913c-f0b4aa0ad689 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  margin: 0 !important;
  overflow: visible;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add background color handling */
  
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
  box-sizing: border-box;
}



.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
      position: relative;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  margin: 0 !important;
  overflow: visible;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add background color handling */
  
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
  box-sizing: border-box;
}



.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
      position: relative;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  margin: 0 !important;
  overflow: visible;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add background color handling */
  
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
  box-sizing: border-box;
}



.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
      position: relative;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  margin: 0 !important;
  overflow: visible;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add background color handling */
  
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
  box-sizing: border-box;
}



.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
      position: relative;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  margin: 0 !important;
  overflow: visible;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add background color handling */
  
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image {
  box-sizing: border-box;
}



.s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container {
      position: relative;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e17183d-2c65-4fbe-b75a-495f58d3fd4c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-f0455418-4097-4aa1-93cc-e8485986eedf {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f0455418-4097-4aa1-93cc-e8485986eedf .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-cbbe3c5e-3eac-453b-a605-185fbeb35234 {
  margin-bottom: 10px;
}

#s-33b6b367-9d30-46f3-a977-6e4e38e9b9e2 {
  margin-bottom: 10px;
}

#s-27736a73-779d-47d3-9b50-e860b612fa60 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-27736a73-779d-47d3-9b50-e860b612fa60:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-27736a73-779d-47d3-9b50-e860b612fa60:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-27736a73-779d-47d3-9b50-e860b612fa60-root {
    text-align: left;
  }


#s-27736a73-779d-47d3-9b50-e860b612fa60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-27736a73-779d-47d3-9b50-e860b612fa60-root {
    text-align: left;
  }


#s-27736a73-779d-47d3-9b50-e860b612fa60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27736a73-779d-47d3-9b50-e860b612fa60-root {
    text-align: left;
  }


#s-27736a73-779d-47d3-9b50-e860b612fa60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27736a73-779d-47d3-9b50-e860b612fa60-root {
    text-align: left;
  }


#s-27736a73-779d-47d3-9b50-e860b612fa60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-27736a73-779d-47d3-9b50-e860b612fa60-root {
    text-align: left;
  }


#s-27736a73-779d-47d3-9b50-e860b612fa60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-fea26ab8-aae8-4040-9538-320765daa0c0 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-fea26ab8-aae8-4040-9538-320765daa0c0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-048238da-61bc-4b8a-8cd9-0fe612c05562 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-048238da-61bc-4b8a-8cd9-0fe612c05562"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-8adc944f-cc25-4374-a3e3-eb78103b0150 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-8adc944f-cc25-4374-a3e3-eb78103b0150 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-8adc944f-cc25-4374-a3e3-eb78103b0150 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8adc944f-cc25-4374-a3e3-eb78103b0150 .shg-sld-nav-button.shg-sld-left,
#s-8adc944f-cc25-4374-a3e3-eb78103b0150 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  margin: 0 !important;
  overflow: visible;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add background color handling */
  
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
  box-sizing: border-box;
}



.s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
      position: relative;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  margin: 0 !important;
  overflow: visible;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add background color handling */
  
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
  box-sizing: border-box;
}



.s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
      position: relative;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  margin: 0 !important;
  overflow: visible;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add background color handling */
  
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
  box-sizing: border-box;
}



.s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
      position: relative;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  margin: 0 !important;
  overflow: visible;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add background color handling */
  
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
  box-sizing: border-box;
}



.s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
      position: relative;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  margin: 0 !important;
  overflow: visible;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add background color handling */
  
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-09b1b68e-e675-4386-82b8-89e18bfecd12 .shogun-image-content {
  
    justify-content: center;
  
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image {
  box-sizing: border-box;
}



.s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container {
      position: relative;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-09b1b68e-e675-4386-82b8-89e18bfecd12 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  text-align: center;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
    
    
    
    
  }


.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
  box-sizing: border-box;
}



.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
    
    
    
    
  }


.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
  box-sizing: border-box;
}



.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
    
    
    
    
  }


.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
  box-sizing: border-box;
}



.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
    
    
    
    
  }


.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
  box-sizing: border-box;
}



.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
    
    
    
    
  }


.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-437006a7-b31e-48a8-a3b0-c14d0ef067f2.shogun-image {
  box-sizing: border-box;
}



.s-437006a7-b31e-48a8-a3b0-c14d0ef067f2 img.shogun-image {
  
}


}
#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  text-align: center;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  margin: 0 !important;
  overflow: visible;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add background color handling */
  
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
    
    
    
    
  }


.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf .shogun-image-content {
  
    justify-content: center;
  
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
  box-sizing: border-box;
}



.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  
}


@media (min-width: 1200px){#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  margin: 0 !important;
  overflow: visible;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add background color handling */
  
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
    
    
    
    
  }


.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf .shogun-image-content {
  
    justify-content: center;
  
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
  box-sizing: border-box;
}



.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  margin: 0 !important;
  overflow: visible;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add background color handling */
  
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
    
    
    
    
  }


.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf .shogun-image-content {
  
    justify-content: center;
  
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
  box-sizing: border-box;
}



.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  margin: 0 !important;
  overflow: visible;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add background color handling */
  
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
    
    
    
    
  }


.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf .shogun-image-content {
  
    justify-content: center;
  
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
  box-sizing: border-box;
}



.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  
}


}@media (max-width: 767px){#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  margin: 0 !important;
  overflow: visible;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add background color handling */
  
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
    
    
    
    
  }


.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf .shogun-image-content {
  
    justify-content: center;
  
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf.shogun-image {
  box-sizing: border-box;
}



.s-23486f5b-75d6-4a8e-8ad5-4286f8c30fbf img.shogun-image {
  
}


}
#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  text-align: center;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  margin: 0 !important;
  overflow: visible;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add background color handling */
  
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
    
    
    
    
  }


.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
  box-sizing: border-box;
}



.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  
}


@media (min-width: 1200px){#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  margin: 0 !important;
  overflow: visible;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add background color handling */
  
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
    
    
    
    
  }


.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
  box-sizing: border-box;
}



.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  margin: 0 !important;
  overflow: visible;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add background color handling */
  
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
    
    
    
    
  }


.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
  box-sizing: border-box;
}



.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  margin: 0 !important;
  overflow: visible;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add background color handling */
  
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
    
    
    
    
  }


.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
  box-sizing: border-box;
}



.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  
}


}@media (max-width: 767px){#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  margin: 0 !important;
  overflow: visible;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8292da8c-90e1-4d09-adfa-0a9a70839a8e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add background color handling */
  
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
    
    
    
    
  }


.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e .shogun-image-content {
  
    justify-content: center;
  
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8292da8c-90e1-4d09-adfa-0a9a70839a8e.shogun-image {
  box-sizing: border-box;
}



.s-8292da8c-90e1-4d09-adfa-0a9a70839a8e img.shogun-image {
  
}


}
#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
  box-sizing: border-box;
}



.s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
      position: relative;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
  box-sizing: border-box;
}



.s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
      position: relative;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
  box-sizing: border-box;
}



.s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
      position: relative;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
  box-sizing: border-box;
}



.s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
      position: relative;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-72b35d76-28b9-4938-95e5-f50f9a354c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image {
  box-sizing: border-box;
}



.s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container {
      position: relative;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72b35d76-28b9-4938-95e5-f50f9a354c09 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
  box-sizing: border-box;
}



.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
      position: relative;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
  box-sizing: border-box;
}



.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
      position: relative;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
  box-sizing: border-box;
}



.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
      position: relative;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
  box-sizing: border-box;
}



.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
      position: relative;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  margin: 0 !important;
  overflow: visible;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add background color handling */
  
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image {
  box-sizing: border-box;
}



.s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container {
      position: relative;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0de5cd9a-eb05-460e-85d8-4d06b1ea64e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  margin: 0 !important;
  overflow: visible;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add background color handling */
  
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
  box-sizing: border-box;
}



.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
      position: relative;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  margin: 0 !important;
  overflow: visible;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add background color handling */
  
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
  box-sizing: border-box;
}



.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
      position: relative;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  margin: 0 !important;
  overflow: visible;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add background color handling */
  
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
  box-sizing: border-box;
}



.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
      position: relative;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  margin: 0 !important;
  overflow: visible;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add background color handling */
  
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
  box-sizing: border-box;
}



.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
      position: relative;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  margin: 0 !important;
  overflow: visible;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add background color handling */
  
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image {
  box-sizing: border-box;
}



.s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container {
      position: relative;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b37cd97a-55a5-4cca-95d3-f905cc9d5234 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-75c08a59-7735-49bb-879b-581a760c2059 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-75c08a59-7735-49bb-879b-581a760c2059 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-9c42ccb6-851d-4c64-b58c-bddd7dee10ae {
  margin-bottom: 10px;
}

#s-5829627c-47e6-4d2b-a4a8-dc198ae93196 {
  margin-bottom: 10px;
}

#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d87c4e17-6df9-4af9-83f8-6056e2833ba7-root {
    text-align: left;
  }


#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d87c4e17-6df9-4af9-83f8-6056e2833ba7-root {
    text-align: left;
  }


#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d87c4e17-6df9-4af9-83f8-6056e2833ba7-root {
    text-align: left;
  }


#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d87c4e17-6df9-4af9-83f8-6056e2833ba7-root {
    text-align: left;
  }


#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d87c4e17-6df9-4af9-83f8-6056e2833ba7-root {
    text-align: left;
  }


#s-d87c4e17-6df9-4af9-83f8-6056e2833ba7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-52b7a95e-efb0-4b38-b372-1b3f80554649 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-52b7a95e-efb0-4b38-b372-1b3f80554649"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-d47808c6-74ea-4958-8266-7ae59515e717 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-d47808c6-74ea-4958-8266-7ae59515e717 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-d47808c6-74ea-4958-8266-7ae59515e717 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d47808c6-74ea-4958-8266-7ae59515e717 .shg-sld-nav-button.shg-sld-left,
#s-d47808c6-74ea-4958-8266-7ae59515e717 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  margin: 0 !important;
  overflow: visible;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add background color handling */
  
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
  box-sizing: border-box;
}



.s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33218de7-264a-4fc9-8594-4b52dfa10997 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
      position: relative;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  margin: 0 !important;
  overflow: visible;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add background color handling */
  
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
  box-sizing: border-box;
}



.s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33218de7-264a-4fc9-8594-4b52dfa10997 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
      position: relative;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  margin: 0 !important;
  overflow: visible;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add background color handling */
  
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
  box-sizing: border-box;
}



.s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33218de7-264a-4fc9-8594-4b52dfa10997 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
      position: relative;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  margin: 0 !important;
  overflow: visible;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add background color handling */
  
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
  box-sizing: border-box;
}



.s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33218de7-264a-4fc9-8594-4b52dfa10997 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
      position: relative;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  margin: 0 !important;
  overflow: visible;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33218de7-264a-4fc9-8594-4b52dfa10997 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add background color handling */
  
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33218de7-264a-4fc9-8594-4b52dfa10997 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-33218de7-264a-4fc9-8594-4b52dfa10997 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image {
  box-sizing: border-box;
}



.s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-33218de7-264a-4fc9-8594-4b52dfa10997 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container {
      position: relative;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33218de7-264a-4fc9-8594-4b52dfa10997 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  text-align: center;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  margin: 0 !important;
  overflow: visible;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add background color handling */
  
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
    
    
    
    
  }


.s-65a7bd66-1900-4260-b334-ab6afd78c95a .shogun-image-content {
  
    justify-content: center;
  
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
  box-sizing: border-box;
}



.s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  
}


@media (min-width: 1200px){#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  margin: 0 !important;
  overflow: visible;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add background color handling */
  
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
    
    
    
    
  }


.s-65a7bd66-1900-4260-b334-ab6afd78c95a .shogun-image-content {
  
    justify-content: center;
  
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
  box-sizing: border-box;
}



.s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  margin: 0 !important;
  overflow: visible;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add background color handling */
  
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
    
    
    
    
  }


.s-65a7bd66-1900-4260-b334-ab6afd78c95a .shogun-image-content {
  
    justify-content: center;
  
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
  box-sizing: border-box;
}



.s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  margin: 0 !important;
  overflow: visible;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add background color handling */
  
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
    
    
    
    
  }


.s-65a7bd66-1900-4260-b334-ab6afd78c95a .shogun-image-content {
  
    justify-content: center;
  
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
  box-sizing: border-box;
}



.s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  
}


}@media (max-width: 767px){#s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  margin: 0 !important;
  overflow: visible;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-65a7bd66-1900-4260-b334-ab6afd78c95a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add background color handling */
  
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
    
    
    
    
  }


.s-65a7bd66-1900-4260-b334-ab6afd78c95a .shogun-image-content {
  
    justify-content: center;
  
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-65a7bd66-1900-4260-b334-ab6afd78c95a.shogun-image {
  box-sizing: border-box;
}



.s-65a7bd66-1900-4260-b334-ab6afd78c95a img.shogun-image {
  
}


}
#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  text-align: center;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
    
    
    
    
  }


.s-c0195d5c-2976-4b32-a38a-8811ede711d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
  box-sizing: border-box;
}



.s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
    
    
    
    
  }


.s-c0195d5c-2976-4b32-a38a-8811ede711d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
  box-sizing: border-box;
}



.s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
    
    
    
    
  }


.s-c0195d5c-2976-4b32-a38a-8811ede711d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
  box-sizing: border-box;
}



.s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
    
    
    
    
  }


.s-c0195d5c-2976-4b32-a38a-8811ede711d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
  box-sizing: border-box;
}



.s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  margin: 0 !important;
  overflow: visible;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c0195d5c-2976-4b32-a38a-8811ede711d7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add background color handling */
  
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
    
    
    
    
  }


.s-c0195d5c-2976-4b32-a38a-8811ede711d7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0195d5c-2976-4b32-a38a-8811ede711d7.shogun-image {
  box-sizing: border-box;
}



.s-c0195d5c-2976-4b32-a38a-8811ede711d7 img.shogun-image {
  
}


}
#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  text-align: center;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  margin: 0 !important;
  overflow: visible;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add background color handling */
  
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
    
    
    
    
  }


.s-fda8d7e0-f942-41be-84b3-22ac439f0131 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
  box-sizing: border-box;
}



.s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  
}


@media (min-width: 1200px){#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  margin: 0 !important;
  overflow: visible;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add background color handling */
  
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
    
    
    
    
  }


.s-fda8d7e0-f942-41be-84b3-22ac439f0131 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
  box-sizing: border-box;
}



.s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  margin: 0 !important;
  overflow: visible;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add background color handling */
  
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
    
    
    
    
  }


.s-fda8d7e0-f942-41be-84b3-22ac439f0131 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
  box-sizing: border-box;
}



.s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  margin: 0 !important;
  overflow: visible;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add background color handling */
  
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
    
    
    
    
  }


.s-fda8d7e0-f942-41be-84b3-22ac439f0131 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
  box-sizing: border-box;
}



.s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  
}


}@media (max-width: 767px){#s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  margin: 0 !important;
  overflow: visible;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fda8d7e0-f942-41be-84b3-22ac439f0131 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add background color handling */
  
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
    
    
    
    
  }


.s-fda8d7e0-f942-41be-84b3-22ac439f0131 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fda8d7e0-f942-41be-84b3-22ac439f0131.shogun-image {
  box-sizing: border-box;
}



.s-fda8d7e0-f942-41be-84b3-22ac439f0131 img.shogun-image {
  
}


}
#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  margin: 0 !important;
  overflow: visible;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add background color handling */
  
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-content {
  
    justify-content: center;
  
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
  box-sizing: border-box;
}



.s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-357d182e-6baf-40ee-a2f3-52f792c381af {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
      position: relative;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  margin: 0 !important;
  overflow: visible;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add background color handling */
  
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-content {
  
    justify-content: center;
  
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
  box-sizing: border-box;
}



.s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-357d182e-6baf-40ee-a2f3-52f792c381af {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
      position: relative;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  margin: 0 !important;
  overflow: visible;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add background color handling */
  
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-content {
  
    justify-content: center;
  
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
  box-sizing: border-box;
}



.s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-357d182e-6baf-40ee-a2f3-52f792c381af {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
      position: relative;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  margin: 0 !important;
  overflow: visible;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add background color handling */
  
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-content {
  
    justify-content: center;
  
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
  box-sizing: border-box;
}



.s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-357d182e-6baf-40ee-a2f3-52f792c381af {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
      position: relative;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-357d182e-6baf-40ee-a2f3-52f792c381af {
  margin: 0 !important;
  overflow: visible;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-357d182e-6baf-40ee-a2f3-52f792c381af {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add background color handling */
  
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-357d182e-6baf-40ee-a2f3-52f792c381af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-357d182e-6baf-40ee-a2f3-52f792c381af .shogun-image-content {
  
    justify-content: center;
  
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image {
  box-sizing: border-box;
}



.s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-357d182e-6baf-40ee-a2f3-52f792c381af {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container {
      position: relative;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-357d182e-6baf-40ee-a2f3-52f792c381af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  margin: 0 !important;
  overflow: visible;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add background color handling */
  
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
  box-sizing: border-box;
}



.s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-93bb7930-0d64-4781-92a5-8e079b41be97 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
      position: relative;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  margin: 0 !important;
  overflow: visible;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add background color handling */
  
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
  box-sizing: border-box;
}



.s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-93bb7930-0d64-4781-92a5-8e079b41be97 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
      position: relative;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  margin: 0 !important;
  overflow: visible;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add background color handling */
  
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
  box-sizing: border-box;
}



.s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-93bb7930-0d64-4781-92a5-8e079b41be97 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
      position: relative;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  margin: 0 !important;
  overflow: visible;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add background color handling */
  
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
  box-sizing: border-box;
}



.s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-93bb7930-0d64-4781-92a5-8e079b41be97 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
      position: relative;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  margin: 0 !important;
  overflow: visible;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-93bb7930-0d64-4781-92a5-8e079b41be97 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add background color handling */
  
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93bb7930-0d64-4781-92a5-8e079b41be97 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-93bb7930-0d64-4781-92a5-8e079b41be97 .shogun-image-content {
  
    justify-content: center;
  
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image {
  box-sizing: border-box;
}



.s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-93bb7930-0d64-4781-92a5-8e079b41be97 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container {
      position: relative;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93bb7930-0d64-4781-92a5-8e079b41be97 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  margin: 0 !important;
  overflow: visible;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add background color handling */
  
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-content {
  
    justify-content: center;
  
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
  box-sizing: border-box;
}



.s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-254f658e-ab1c-48de-adcb-5a7fba36546c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
      position: relative;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  margin: 0 !important;
  overflow: visible;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add background color handling */
  
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-content {
  
    justify-content: center;
  
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
  box-sizing: border-box;
}



.s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-254f658e-ab1c-48de-adcb-5a7fba36546c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
      position: relative;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  margin: 0 !important;
  overflow: visible;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add background color handling */
  
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-content {
  
    justify-content: center;
  
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
  box-sizing: border-box;
}



.s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-254f658e-ab1c-48de-adcb-5a7fba36546c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
      position: relative;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  margin: 0 !important;
  overflow: visible;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add background color handling */
  
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-content {
  
    justify-content: center;
  
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
  box-sizing: border-box;
}



.s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-254f658e-ab1c-48de-adcb-5a7fba36546c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
      position: relative;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  margin: 0 !important;
  overflow: visible;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-254f658e-ab1c-48de-adcb-5a7fba36546c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add background color handling */
  
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-254f658e-ab1c-48de-adcb-5a7fba36546c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-254f658e-ab1c-48de-adcb-5a7fba36546c .shogun-image-content {
  
    justify-content: center;
  
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image {
  box-sizing: border-box;
}



.s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-254f658e-ab1c-48de-adcb-5a7fba36546c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container {
      position: relative;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-254f658e-ab1c-48de-adcb-5a7fba36546c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-5a72cd14-7566-4250-aca8-a01dda2693b1 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5a72cd14-7566-4250-aca8-a01dda2693b1 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-f484d12a-c068-476a-a897-8cf383feec55 {
  margin-bottom: 10px;
}

#s-c2c92689-2260-42c4-ad2a-d5e9fc782def {
  margin-bottom: 10px;
}

#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ec7ab0d2-f300-45b3-9923-ac7829256cc1-root {
    text-align: left;
  }


#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ec7ab0d2-f300-45b3-9923-ac7829256cc1-root {
    text-align: left;
  }


#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ec7ab0d2-f300-45b3-9923-ac7829256cc1-root {
    text-align: left;
  }


#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ec7ab0d2-f300-45b3-9923-ac7829256cc1-root {
    text-align: left;
  }


#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ec7ab0d2-f300-45b3-9923-ac7829256cc1-root {
    text-align: left;
  }


#s-ec7ab0d2-f300-45b3-9923-ac7829256cc1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-834bfc36-6dae-47db-bc58-c7557b47aa24 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-834bfc36-6dae-47db-bc58-c7557b47aa24"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-97f1e137-c9e6-47c3-99e4-c6daf0094928 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-97f1e137-c9e6-47c3-99e4-c6daf0094928 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-97f1e137-c9e6-47c3-99e4-c6daf0094928 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-97f1e137-c9e6-47c3-99e4-c6daf0094928 .shg-sld-nav-button.shg-sld-left,
#s-97f1e137-c9e6-47c3-99e4-c6daf0094928 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
  box-sizing: border-box;
}



.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
      position: relative;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
  box-sizing: border-box;
}



.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
      position: relative;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
  box-sizing: border-box;
}



.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
      position: relative;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
  box-sizing: border-box;
}



.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
      position: relative;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image {
  box-sizing: border-box;
}



.s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container {
      position: relative;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4643eff-e95e-4eb6-9cb0-547f3d8ac8e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  text-align: center;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  margin: 0 !important;
  overflow: visible;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add background color handling */
  
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
    
    
    
    
  }


.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
  box-sizing: border-box;
}



.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  
}


@media (min-width: 1200px){#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  margin: 0 !important;
  overflow: visible;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add background color handling */
  
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
    
    
    
    
  }


.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
  box-sizing: border-box;
}



.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  margin: 0 !important;
  overflow: visible;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add background color handling */
  
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
    
    
    
    
  }


.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
  box-sizing: border-box;
}



.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  margin: 0 !important;
  overflow: visible;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add background color handling */
  
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
    
    
    
    
  }


.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
  box-sizing: border-box;
}



.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  
}


}@media (max-width: 767px){#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  margin: 0 !important;
  overflow: visible;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add background color handling */
  
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
    
    
    
    
  }


.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a.shogun-image {
  box-sizing: border-box;
}



.s-8fa219c9-60b0-49f3-bd91-0d6b88338b4a img.shogun-image {
  
}


}
#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  text-align: center;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  margin: 0 !important;
  overflow: visible;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add background color handling */
  
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
    
    
    
    
  }


.s-10991a09-12b2-4593-b47d-fd5f7182b880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
  box-sizing: border-box;
}



.s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  
}


@media (min-width: 1200px){#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  margin: 0 !important;
  overflow: visible;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add background color handling */
  
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
    
    
    
    
  }


.s-10991a09-12b2-4593-b47d-fd5f7182b880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
  box-sizing: border-box;
}



.s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  margin: 0 !important;
  overflow: visible;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add background color handling */
  
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
    
    
    
    
  }


.s-10991a09-12b2-4593-b47d-fd5f7182b880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
  box-sizing: border-box;
}



.s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  margin: 0 !important;
  overflow: visible;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add background color handling */
  
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
    
    
    
    
  }


.s-10991a09-12b2-4593-b47d-fd5f7182b880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
  box-sizing: border-box;
}



.s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  
}


}@media (max-width: 767px){#s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  margin: 0 !important;
  overflow: visible;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10991a09-12b2-4593-b47d-fd5f7182b880 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add background color handling */
  
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
    
    
    
    
  }


.s-10991a09-12b2-4593-b47d-fd5f7182b880 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10991a09-12b2-4593-b47d-fd5f7182b880.shogun-image {
  box-sizing: border-box;
}



.s-10991a09-12b2-4593-b47d-fd5f7182b880 img.shogun-image {
  
}


}
#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  text-align: center;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  margin: 0 !important;
  overflow: visible;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add background color handling */
  
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
    
    
    
    
  }


.s-ebb38a2e-f898-4c08-be52-8f85e70d883c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
  box-sizing: border-box;
}



.s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  
}


@media (min-width: 1200px){#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  margin: 0 !important;
  overflow: visible;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add background color handling */
  
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
    
    
    
    
  }


.s-ebb38a2e-f898-4c08-be52-8f85e70d883c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
  box-sizing: border-box;
}



.s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  margin: 0 !important;
  overflow: visible;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add background color handling */
  
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
    
    
    
    
  }


.s-ebb38a2e-f898-4c08-be52-8f85e70d883c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
  box-sizing: border-box;
}



.s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  margin: 0 !important;
  overflow: visible;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add background color handling */
  
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
    
    
    
    
  }


.s-ebb38a2e-f898-4c08-be52-8f85e70d883c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
  box-sizing: border-box;
}



.s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  
}


}@media (max-width: 767px){#s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  margin: 0 !important;
  overflow: visible;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ebb38a2e-f898-4c08-be52-8f85e70d883c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add background color handling */
  
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
    
    
    
    
  }


.s-ebb38a2e-f898-4c08-be52-8f85e70d883c .shogun-image-content {
  
    justify-content: center;
  
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebb38a2e-f898-4c08-be52-8f85e70d883c.shogun-image {
  box-sizing: border-box;
}



.s-ebb38a2e-f898-4c08-be52-8f85e70d883c img.shogun-image {
  
}


}
#s-27766413-db88-40e5-b54e-c7d5074b815c {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c {
  margin: 0 !important;
  overflow: visible;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add background color handling */
  
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-content {
  
    justify-content: center;
  
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
  box-sizing: border-box;
}



.s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-27766413-db88-40e5-b54e-c7d5074b815c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
      position: relative;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-27766413-db88-40e5-b54e-c7d5074b815c {
  margin: 0 !important;
  overflow: visible;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add background color handling */
  
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-content {
  
    justify-content: center;
  
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
  box-sizing: border-box;
}



.s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-27766413-db88-40e5-b54e-c7d5074b815c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
      position: relative;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-27766413-db88-40e5-b54e-c7d5074b815c {
  margin: 0 !important;
  overflow: visible;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add background color handling */
  
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-content {
  
    justify-content: center;
  
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
  box-sizing: border-box;
}



.s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-27766413-db88-40e5-b54e-c7d5074b815c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
      position: relative;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-27766413-db88-40e5-b54e-c7d5074b815c {
  margin: 0 !important;
  overflow: visible;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add background color handling */
  
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-content {
  
    justify-content: center;
  
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
  box-sizing: border-box;
}



.s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-27766413-db88-40e5-b54e-c7d5074b815c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
      position: relative;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-27766413-db88-40e5-b54e-c7d5074b815c {
  margin: 0 !important;
  overflow: visible;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-27766413-db88-40e5-b54e-c7d5074b815c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add background color handling */
  
}

#s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27766413-db88-40e5-b54e-c7d5074b815c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-27766413-db88-40e5-b54e-c7d5074b815c .shogun-image-content {
  
    justify-content: center;
  
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image {
  box-sizing: border-box;
}



.s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-27766413-db88-40e5-b54e-c7d5074b815c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container {
      position: relative;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27766413-db88-40e5-b54e-c7d5074b815c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  margin: 0 !important;
  overflow: visible;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add background color handling */
  
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
  box-sizing: border-box;
}



.s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b44657cd-77c4-40ec-94e1-b403841a40fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
      position: relative;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  margin: 0 !important;
  overflow: visible;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add background color handling */
  
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
  box-sizing: border-box;
}



.s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b44657cd-77c4-40ec-94e1-b403841a40fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
      position: relative;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  margin: 0 !important;
  overflow: visible;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add background color handling */
  
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
  box-sizing: border-box;
}



.s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b44657cd-77c4-40ec-94e1-b403841a40fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
      position: relative;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  margin: 0 !important;
  overflow: visible;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add background color handling */
  
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
  box-sizing: border-box;
}



.s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b44657cd-77c4-40ec-94e1-b403841a40fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
      position: relative;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  margin: 0 !important;
  overflow: visible;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b44657cd-77c4-40ec-94e1-b403841a40fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add background color handling */
  
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b44657cd-77c4-40ec-94e1-b403841a40fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-b44657cd-77c4-40ec-94e1-b403841a40fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image {
  box-sizing: border-box;
}



.s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b44657cd-77c4-40ec-94e1-b403841a40fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container {
      position: relative;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b44657cd-77c4-40ec-94e1-b403841a40fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-c909f077-a941-4247-a317-3c47a4804a78 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 {
  margin: 0 !important;
  overflow: visible;
}

#s-c909f077-a941-4247-a317-3c47a4804a78-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add background color handling */
  
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
  box-sizing: border-box;
}



.s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c909f077-a941-4247-a317-3c47a4804a78 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
      position: relative;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-c909f077-a941-4247-a317-3c47a4804a78 {
  margin: 0 !important;
  overflow: visible;
}

#s-c909f077-a941-4247-a317-3c47a4804a78-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add background color handling */
  
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
  box-sizing: border-box;
}



.s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c909f077-a941-4247-a317-3c47a4804a78 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
      position: relative;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c909f077-a941-4247-a317-3c47a4804a78 {
  margin: 0 !important;
  overflow: visible;
}

#s-c909f077-a941-4247-a317-3c47a4804a78-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add background color handling */
  
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
  box-sizing: border-box;
}



.s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c909f077-a941-4247-a317-3c47a4804a78 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
      position: relative;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c909f077-a941-4247-a317-3c47a4804a78 {
  margin: 0 !important;
  overflow: visible;
}

#s-c909f077-a941-4247-a317-3c47a4804a78-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add background color handling */
  
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
  box-sizing: border-box;
}



.s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c909f077-a941-4247-a317-3c47a4804a78 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
      position: relative;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-c909f077-a941-4247-a317-3c47a4804a78 {
  margin: 0 !important;
  overflow: visible;
}

#s-c909f077-a941-4247-a317-3c47a4804a78-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c909f077-a941-4247-a317-3c47a4804a78 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add background color handling */
  
}

#s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c909f077-a941-4247-a317-3c47a4804a78 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c909f077-a941-4247-a317-3c47a4804a78 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image {
  box-sizing: border-box;
}



.s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c909f077-a941-4247-a317-3c47a4804a78 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container {
      position: relative;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c909f077-a941-4247-a317-3c47a4804a78 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-69caf437-ad27-4b60-a47a-5b053d6214ae {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-69caf437-ad27-4b60-a47a-5b053d6214ae .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-7ffe97ee-efab-4a5c-a576-f9a2b16790ea {
  margin-bottom: 10px;
}

#s-cbf6bc93-9267-4a0c-8a88-1d1d7131740e {
  margin-bottom: 10px;
}

#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3dd7077f-d07e-4f70-810d-e3d35b17a1be-root {
    text-align: left;
  }


#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3dd7077f-d07e-4f70-810d-e3d35b17a1be-root {
    text-align: left;
  }


#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3dd7077f-d07e-4f70-810d-e3d35b17a1be-root {
    text-align: left;
  }


#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3dd7077f-d07e-4f70-810d-e3d35b17a1be-root {
    text-align: left;
  }


#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3dd7077f-d07e-4f70-810d-e3d35b17a1be-root {
    text-align: left;
  }


#s-3dd7077f-d07e-4f70-810d-e3d35b17a1be.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-087e5d98-5062-4ee2-901d-3b9fc314f986 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-087e5d98-5062-4ee2-901d-3b9fc314f986 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-8ad112a1-98da-449d-b490-3b5b80c1e78d {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ad112a1-98da-449d-b490-3b5b80c1e78d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-ad48fe2a-8d3e-4510-a967-a6fdd88e10f8 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-ad48fe2a-8d3e-4510-a967-a6fdd88e10f8 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-ad48fe2a-8d3e-4510-a967-a6fdd88e10f8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ad48fe2a-8d3e-4510-a967-a6fdd88e10f8 .shg-sld-nav-button.shg-sld-left,
#s-ad48fe2a-8d3e-4510-a967-a6fdd88e10f8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  margin: 0 !important;
  overflow: visible;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add background color handling */
  
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-content {
  
    justify-content: center;
  
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
  box-sizing: border-box;
}



.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
      position: relative;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  margin: 0 !important;
  overflow: visible;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add background color handling */
  
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-content {
  
    justify-content: center;
  
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
  box-sizing: border-box;
}



.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
      position: relative;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  margin: 0 !important;
  overflow: visible;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add background color handling */
  
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-content {
  
    justify-content: center;
  
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
  box-sizing: border-box;
}



.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
      position: relative;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  margin: 0 !important;
  overflow: visible;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add background color handling */
  
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-content {
  
    justify-content: center;
  
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
  box-sizing: border-box;
}



.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
      position: relative;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  margin: 0 !important;
  overflow: visible;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add background color handling */
  
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd .shogun-image-content {
  
    justify-content: center;
  
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image {
  box-sizing: border-box;
}



.s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container {
      position: relative;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e0d1033d-3151-48de-99f4-c0dfda2e0fdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  text-align: center;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  margin: 0 !important;
  overflow: visible;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add background color handling */
  
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
    
    
    
    
  }


.s-90f4c03d-29be-4614-bbc6-bb0d18183889 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
  box-sizing: border-box;
}



.s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  
}


@media (min-width: 1200px){#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  margin: 0 !important;
  overflow: visible;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add background color handling */
  
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
    
    
    
    
  }


.s-90f4c03d-29be-4614-bbc6-bb0d18183889 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
  box-sizing: border-box;
}



.s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  margin: 0 !important;
  overflow: visible;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add background color handling */
  
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
    
    
    
    
  }


.s-90f4c03d-29be-4614-bbc6-bb0d18183889 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
  box-sizing: border-box;
}



.s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  margin: 0 !important;
  overflow: visible;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add background color handling */
  
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
    
    
    
    
  }


.s-90f4c03d-29be-4614-bbc6-bb0d18183889 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
  box-sizing: border-box;
}



.s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  
}


}@media (max-width: 767px){#s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  margin: 0 !important;
  overflow: visible;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-90f4c03d-29be-4614-bbc6-bb0d18183889 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add background color handling */
  
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
    
    
    
    
  }


.s-90f4c03d-29be-4614-bbc6-bb0d18183889 .shogun-image-content {
  
    justify-content: center;
  
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90f4c03d-29be-4614-bbc6-bb0d18183889.shogun-image {
  box-sizing: border-box;
}



.s-90f4c03d-29be-4614-bbc6-bb0d18183889 img.shogun-image {
  
}


}
#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  text-align: center;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  margin: 0 !important;
  overflow: visible;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add background color handling */
  
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
    
    
    
    
  }


.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
  box-sizing: border-box;
}



.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  margin: 0 !important;
  overflow: visible;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add background color handling */
  
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
    
    
    
    
  }


.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
  box-sizing: border-box;
}



.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  margin: 0 !important;
  overflow: visible;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add background color handling */
  
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
    
    
    
    
  }


.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
  box-sizing: border-box;
}



.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  margin: 0 !important;
  overflow: visible;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add background color handling */
  
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
    
    
    
    
  }


.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
  box-sizing: border-box;
}



.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  margin: 0 !important;
  overflow: visible;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add background color handling */
  
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
    
    
    
    
  }


.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2.shogun-image {
  box-sizing: border-box;
}



.s-1123d971-ce5c-4a76-817d-b4e24bfd1ab2 img.shogun-image {
  
}


}
#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  text-align: center;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  margin: 0 !important;
  overflow: visible;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add background color handling */
  
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
    
    
    
    
  }


.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
  box-sizing: border-box;
}



.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  
}


@media (min-width: 1200px){#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  margin: 0 !important;
  overflow: visible;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add background color handling */
  
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
    
    
    
    
  }


.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
  box-sizing: border-box;
}



.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  margin: 0 !important;
  overflow: visible;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add background color handling */
  
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
    
    
    
    
  }


.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
  box-sizing: border-box;
}



.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  margin: 0 !important;
  overflow: visible;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add background color handling */
  
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
    
    
    
    
  }


.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
  box-sizing: border-box;
}



.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  
}


}@media (max-width: 767px){#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  margin: 0 !important;
  overflow: visible;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add background color handling */
  
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
    
    
    
    
  }


.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d .shogun-image-content {
  
    justify-content: center;
  
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d.shogun-image {
  box-sizing: border-box;
}



.s-c2ccde2c-ad37-47d5-8d1e-18dcf6b3831d img.shogun-image {
  
}


}
#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  margin: 0 !important;
  overflow: visible;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add background color handling */
  
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
  box-sizing: border-box;
}



.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
      position: relative;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  margin: 0 !important;
  overflow: visible;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add background color handling */
  
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
  box-sizing: border-box;
}



.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
      position: relative;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  margin: 0 !important;
  overflow: visible;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add background color handling */
  
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
  box-sizing: border-box;
}



.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
      position: relative;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  margin: 0 !important;
  overflow: visible;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add background color handling */
  
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
  box-sizing: border-box;
}



.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
      position: relative;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  margin: 0 !important;
  overflow: visible;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add background color handling */
  
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image {
  box-sizing: border-box;
}



.s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container {
      position: relative;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3542ac3-8f1f-4b7a-a50e-ce2bd2d62e65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-42aaa686-f086-4800-9344-0debda6c529b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-42aaa686-f086-4800-9344-0debda6c529b {
  margin: 0 !important;
  overflow: visible;
}

#s-42aaa686-f086-4800-9344-0debda6c529b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add background color handling */
  
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-content {
  
    justify-content: center;
  
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
  box-sizing: border-box;
}



.s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-42aaa686-f086-4800-9344-0debda6c529b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
      position: relative;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-42aaa686-f086-4800-9344-0debda6c529b {
  margin: 0 !important;
  overflow: visible;
}

#s-42aaa686-f086-4800-9344-0debda6c529b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add background color handling */
  
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-content {
  
    justify-content: center;
  
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
  box-sizing: border-box;
}



.s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-42aaa686-f086-4800-9344-0debda6c529b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
      position: relative;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-42aaa686-f086-4800-9344-0debda6c529b {
  margin: 0 !important;
  overflow: visible;
}

#s-42aaa686-f086-4800-9344-0debda6c529b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add background color handling */
  
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-content {
  
    justify-content: center;
  
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
  box-sizing: border-box;
}



.s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-42aaa686-f086-4800-9344-0debda6c529b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
      position: relative;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-42aaa686-f086-4800-9344-0debda6c529b {
  margin: 0 !important;
  overflow: visible;
}

#s-42aaa686-f086-4800-9344-0debda6c529b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add background color handling */
  
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-content {
  
    justify-content: center;
  
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
  box-sizing: border-box;
}



.s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-42aaa686-f086-4800-9344-0debda6c529b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
      position: relative;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-42aaa686-f086-4800-9344-0debda6c529b {
  margin: 0 !important;
  overflow: visible;
}

#s-42aaa686-f086-4800-9344-0debda6c529b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42aaa686-f086-4800-9344-0debda6c529b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add background color handling */
  
}

#s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42aaa686-f086-4800-9344-0debda6c529b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-42aaa686-f086-4800-9344-0debda6c529b .shogun-image-content {
  
    justify-content: center;
  
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image {
  box-sizing: border-box;
}



.s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-42aaa686-f086-4800-9344-0debda6c529b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container {
      position: relative;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42aaa686-f086-4800-9344-0debda6c529b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  margin: 0 !important;
  overflow: visible;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add background color handling */
  
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
  box-sizing: border-box;
}



.s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7df89410-24f7-4b5d-860a-f114993b0a3e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
      position: relative;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  margin: 0 !important;
  overflow: visible;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add background color handling */
  
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
  box-sizing: border-box;
}



.s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7df89410-24f7-4b5d-860a-f114993b0a3e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
      position: relative;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  margin: 0 !important;
  overflow: visible;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add background color handling */
  
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
  box-sizing: border-box;
}



.s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7df89410-24f7-4b5d-860a-f114993b0a3e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
      position: relative;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  margin: 0 !important;
  overflow: visible;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add background color handling */
  
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
  box-sizing: border-box;
}



.s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7df89410-24f7-4b5d-860a-f114993b0a3e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
      position: relative;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  margin: 0 !important;
  overflow: visible;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7df89410-24f7-4b5d-860a-f114993b0a3e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add background color handling */
  
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7df89410-24f7-4b5d-860a-f114993b0a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7df89410-24f7-4b5d-860a-f114993b0a3e .shogun-image-content {
  
    justify-content: center;
  
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image {
  box-sizing: border-box;
}



.s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7df89410-24f7-4b5d-860a-f114993b0a3e {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container {
      position: relative;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7df89410-24f7-4b5d-860a-f114993b0a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-d2ba3a5a-e524-4701-9427-9204abe13c55 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d2ba3a5a-e524-4701-9427-9204abe13c55 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-0a622be0-5b4e-434e-822e-d9c093de3af1 {
  margin-bottom: 10px;
}

#s-0f9accd9-7635-4d1f-8282-744e19ab5510 {
  margin-bottom: 10px;
}

#s-416e0c9d-df01-4d9f-a86d-f21b95a91106 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-416e0c9d-df01-4d9f-a86d-f21b95a91106:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-416e0c9d-df01-4d9f-a86d-f21b95a91106:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-416e0c9d-df01-4d9f-a86d-f21b95a91106-root {
    text-align: left;
  }


#s-416e0c9d-df01-4d9f-a86d-f21b95a91106.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-416e0c9d-df01-4d9f-a86d-f21b95a91106-root {
    text-align: left;
  }


#s-416e0c9d-df01-4d9f-a86d-f21b95a91106.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-416e0c9d-df01-4d9f-a86d-f21b95a91106-root {
    text-align: left;
  }


#s-416e0c9d-df01-4d9f-a86d-f21b95a91106.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-416e0c9d-df01-4d9f-a86d-f21b95a91106-root {
    text-align: left;
  }


#s-416e0c9d-df01-4d9f-a86d-f21b95a91106.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-416e0c9d-df01-4d9f-a86d-f21b95a91106-root {
    text-align: left;
  }


#s-416e0c9d-df01-4d9f-a86d-f21b95a91106.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c18145c9-ebeb-424c-8041-2563748ff2d9 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c18145c9-ebeb-424c-8041-2563748ff2d9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-837087e3-5965-4aa4-9b0f-19fb70c60a0e {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-837087e3-5965-4aa4-9b0f-19fb70c60a0e {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-837087e3-5965-4aa4-9b0f-19fb70c60a0e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-837087e3-5965-4aa4-9b0f-19fb70c60a0e .shg-sld-nav-button.shg-sld-left,
#s-837087e3-5965-4aa4-9b0f-19fb70c60a0e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  margin: 0 !important;
  overflow: visible;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add background color handling */
  
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
  box-sizing: border-box;
}



.s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
      position: relative;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  margin: 0 !important;
  overflow: visible;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add background color handling */
  
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
  box-sizing: border-box;
}



.s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
      position: relative;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  margin: 0 !important;
  overflow: visible;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add background color handling */
  
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
  box-sizing: border-box;
}



.s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
      position: relative;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  margin: 0 !important;
  overflow: visible;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add background color handling */
  
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
  box-sizing: border-box;
}



.s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
      position: relative;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  margin: 0 !important;
  overflow: visible;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add background color handling */
  
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-6ed20845-2716-48ee-9869-f12b0f9a91fd .shogun-image-content {
  
    justify-content: center;
  
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image {
  box-sizing: border-box;
}



.s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container {
      position: relative;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ed20845-2716-48ee-9869-f12b0f9a91fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  text-align: center;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
    
    
    
    
  }


.s-406a72d2-f16c-4c18-b945-0289b63379a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
  box-sizing: border-box;
}



.s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
    
    
    
    
  }


.s-406a72d2-f16c-4c18-b945-0289b63379a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
  box-sizing: border-box;
}



.s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
    
    
    
    
  }


.s-406a72d2-f16c-4c18-b945-0289b63379a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
  box-sizing: border-box;
}



.s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
    
    
    
    
  }


.s-406a72d2-f16c-4c18-b945-0289b63379a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
  box-sizing: border-box;
}



.s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  margin: 0 !important;
  overflow: visible;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-406a72d2-f16c-4c18-b945-0289b63379a8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add background color handling */
  
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
    
    
    
    
  }


.s-406a72d2-f16c-4c18-b945-0289b63379a8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-406a72d2-f16c-4c18-b945-0289b63379a8.shogun-image {
  box-sizing: border-box;
}



.s-406a72d2-f16c-4c18-b945-0289b63379a8 img.shogun-image {
  
}


}
#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  text-align: center;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
    
    
    
    
  }


.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
  box-sizing: border-box;
}



.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
    
    
    
    
  }


.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
  box-sizing: border-box;
}



.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
    
    
    
    
  }


.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
  box-sizing: border-box;
}



.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
    
    
    
    
  }


.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
  box-sizing: border-box;
}



.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
    
    
    
    
  }


.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b9444ef-64a1-416d-8b21-7d953bafa8a7.shogun-image {
  box-sizing: border-box;
}



.s-2b9444ef-64a1-416d-8b21-7d953bafa8a7 img.shogun-image {
  
}


}
#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  text-align: center;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
    
    
    
    
  }


.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
  box-sizing: border-box;
}



.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  
}


@media (min-width: 1200px){#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
    
    
    
    
  }


.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
  box-sizing: border-box;
}



.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
    
    
    
    
  }


.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
  box-sizing: border-box;
}



.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
    
    
    
    
  }


.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
  box-sizing: border-box;
}



.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  
}


}@media (max-width: 767px){#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  margin: 0 !important;
  overflow: visible;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add background color handling */
  
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
    
    
    
    
  }


.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba6a4015-fd69-4932-bf49-1dc5a4e48877.shogun-image {
  box-sizing: border-box;
}



.s-ba6a4015-fd69-4932-bf49-1dc5a4e48877 img.shogun-image {
  
}


}
#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  margin: 0 !important;
  overflow: visible;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add background color handling */
  
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
  box-sizing: border-box;
}



.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
      position: relative;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  margin: 0 !important;
  overflow: visible;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add background color handling */
  
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
  box-sizing: border-box;
}



.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
      position: relative;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  margin: 0 !important;
  overflow: visible;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add background color handling */
  
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
  box-sizing: border-box;
}



.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
      position: relative;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  margin: 0 !important;
  overflow: visible;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add background color handling */
  
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
  box-sizing: border-box;
}



.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
      position: relative;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  margin: 0 !important;
  overflow: visible;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add background color handling */
  
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee .shogun-image-content {
  
    justify-content: center;
  
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image {
  box-sizing: border-box;
}



.s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container {
      position: relative;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5dc376b3-fb91-44e7-9bf6-77a8da1a9eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
  box-sizing: border-box;
}



.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
      position: relative;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
  box-sizing: border-box;
}



.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
      position: relative;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
  box-sizing: border-box;
}



.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
      position: relative;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
  box-sizing: border-box;
}



.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
      position: relative;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image {
  box-sizing: border-box;
}



.s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container {
      position: relative;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a1cde22-8f89-4e27-887e-22b3af20bce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
  box-sizing: border-box;
}



.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
      position: relative;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
  box-sizing: border-box;
}



.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
      position: relative;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
  box-sizing: border-box;
}



.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
      position: relative;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
  box-sizing: border-box;
}



.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
      position: relative;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image {
  box-sizing: border-box;
}



.s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container {
      position: relative;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3dd23330-e22a-406e-9bc8-a8501716d7f2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-da9b2746-c7ad-4e60-89ad-9a78ae22d1b3 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-da9b2746-c7ad-4e60-89ad-9a78ae22d1b3 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-065fca01-c356-4049-a18c-7a573705442f {
  margin-bottom: 10px;
}

#s-0c2c6afd-6c4e-48bf-a00f-18b4792690e1 {
  margin-bottom: 10px;
}

#s-54b9a917-a851-4b40-bb32-c4e3d140bc69 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-54b9a917-a851-4b40-bb32-c4e3d140bc69:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-54b9a917-a851-4b40-bb32-c4e3d140bc69:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-54b9a917-a851-4b40-bb32-c4e3d140bc69-root {
    text-align: left;
  }


#s-54b9a917-a851-4b40-bb32-c4e3d140bc69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-54b9a917-a851-4b40-bb32-c4e3d140bc69-root {
    text-align: left;
  }


#s-54b9a917-a851-4b40-bb32-c4e3d140bc69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-54b9a917-a851-4b40-bb32-c4e3d140bc69-root {
    text-align: left;
  }


#s-54b9a917-a851-4b40-bb32-c4e3d140bc69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-54b9a917-a851-4b40-bb32-c4e3d140bc69-root {
    text-align: left;
  }


#s-54b9a917-a851-4b40-bb32-c4e3d140bc69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-54b9a917-a851-4b40-bb32-c4e3d140bc69-root {
    text-align: left;
  }


#s-54b9a917-a851-4b40-bb32-c4e3d140bc69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-069ec8c4-ddb0-49e5-9858-3893a7946873 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-069ec8c4-ddb0-49e5-9858-3893a7946873"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-38662263-1af5-43f3-b009-6e11bb1d32c2 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-38662263-1af5-43f3-b009-6e11bb1d32c2 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-38662263-1af5-43f3-b009-6e11bb1d32c2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-38662263-1af5-43f3-b009-6e11bb1d32c2 .shg-sld-nav-button.shg-sld-left,
#s-38662263-1af5-43f3-b009-6e11bb1d32c2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  margin: 0 !important;
  overflow: visible;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add background color handling */
  
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
  box-sizing: border-box;
}



.s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75c27f28-68cf-42ac-9344-21083e4110ba {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
      position: relative;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  margin: 0 !important;
  overflow: visible;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add background color handling */
  
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
  box-sizing: border-box;
}



.s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75c27f28-68cf-42ac-9344-21083e4110ba {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
      position: relative;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  margin: 0 !important;
  overflow: visible;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add background color handling */
  
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
  box-sizing: border-box;
}



.s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75c27f28-68cf-42ac-9344-21083e4110ba {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
      position: relative;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  margin: 0 !important;
  overflow: visible;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add background color handling */
  
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
  box-sizing: border-box;
}



.s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75c27f28-68cf-42ac-9344-21083e4110ba {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
      position: relative;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-75c27f28-68cf-42ac-9344-21083e4110ba {
  margin: 0 !important;
  overflow: visible;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75c27f28-68cf-42ac-9344-21083e4110ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add background color handling */
  
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75c27f28-68cf-42ac-9344-21083e4110ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75c27f28-68cf-42ac-9344-21083e4110ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image {
  box-sizing: border-box;
}



.s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75c27f28-68cf-42ac-9344-21083e4110ba {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container {
      position: relative;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75c27f28-68cf-42ac-9344-21083e4110ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  text-align: center;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  margin: 0 !important;
  overflow: visible;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add background color handling */
  
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
    
    
    
    
  }


.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
  box-sizing: border-box;
}



.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  
}


@media (min-width: 1200px){#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  margin: 0 !important;
  overflow: visible;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add background color handling */
  
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
    
    
    
    
  }


.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
  box-sizing: border-box;
}



.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  margin: 0 !important;
  overflow: visible;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add background color handling */
  
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
    
    
    
    
  }


.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
  box-sizing: border-box;
}



.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  margin: 0 !important;
  overflow: visible;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add background color handling */
  
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
    
    
    
    
  }


.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
  box-sizing: border-box;
}



.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  
}


}@media (max-width: 767px){#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  margin: 0 !important;
  overflow: visible;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4b50be7f-b989-4a16-b0ce-e3ddc406649a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add background color handling */
  
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
    
    
    
    
  }


.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a .shogun-image-content {
  
    justify-content: center;
  
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b50be7f-b989-4a16-b0ce-e3ddc406649a.shogun-image {
  box-sizing: border-box;
}



.s-4b50be7f-b989-4a16-b0ce-e3ddc406649a img.shogun-image {
  
}


}
#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  text-align: center;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  margin: 0 !important;
  overflow: visible;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add background color handling */
  
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
    
    
    
    
  }


.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
  box-sizing: border-box;
}



.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  
}


@media (min-width: 1200px){#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  margin: 0 !important;
  overflow: visible;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add background color handling */
  
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
    
    
    
    
  }


.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
  box-sizing: border-box;
}



.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  margin: 0 !important;
  overflow: visible;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add background color handling */
  
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
    
    
    
    
  }


.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
  box-sizing: border-box;
}



.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  margin: 0 !important;
  overflow: visible;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add background color handling */
  
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
    
    
    
    
  }


.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
  box-sizing: border-box;
}



.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  
}


}@media (max-width: 767px){#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  margin: 0 !important;
  overflow: visible;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add background color handling */
  
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
    
    
    
    
  }


.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f.shogun-image {
  box-sizing: border-box;
}



.s-9b7b08a2-ba8b-4e59-8c90-8ff01d0b917f img.shogun-image {
  
}


}
#s-31813383-fec9-4a54-acf6-28519eee7ada {
  text-align: center;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada {
  margin: 0 !important;
  overflow: visible;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add background color handling */
  
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
    
    
    
    
  }


.s-31813383-fec9-4a54-acf6-28519eee7ada .shogun-image-content {
  
    justify-content: center;
  
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
  box-sizing: border-box;
}



.s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  
}


@media (min-width: 1200px){#s-31813383-fec9-4a54-acf6-28519eee7ada {
  margin: 0 !important;
  overflow: visible;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add background color handling */
  
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
    
    
    
    
  }


.s-31813383-fec9-4a54-acf6-28519eee7ada .shogun-image-content {
  
    justify-content: center;
  
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
  box-sizing: border-box;
}



.s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-31813383-fec9-4a54-acf6-28519eee7ada {
  margin: 0 !important;
  overflow: visible;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add background color handling */
  
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
    
    
    
    
  }


.s-31813383-fec9-4a54-acf6-28519eee7ada .shogun-image-content {
  
    justify-content: center;
  
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
  box-sizing: border-box;
}



.s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-31813383-fec9-4a54-acf6-28519eee7ada {
  margin: 0 !important;
  overflow: visible;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add background color handling */
  
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
    
    
    
    
  }


.s-31813383-fec9-4a54-acf6-28519eee7ada .shogun-image-content {
  
    justify-content: center;
  
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
  box-sizing: border-box;
}



.s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  
}


}@media (max-width: 767px){#s-31813383-fec9-4a54-acf6-28519eee7ada {
  margin: 0 !important;
  overflow: visible;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31813383-fec9-4a54-acf6-28519eee7ada {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add background color handling */
  
}

#s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
    
    
    
    
  }


.s-31813383-fec9-4a54-acf6-28519eee7ada .shogun-image-content {
  
    justify-content: center;
  
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31813383-fec9-4a54-acf6-28519eee7ada.shogun-image {
  box-sizing: border-box;
}



.s-31813383-fec9-4a54-acf6-28519eee7ada img.shogun-image {
  
}


}
#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  margin: 0 !important;
  overflow: visible;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add background color handling */
  
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-content {
  
    justify-content: center;
  
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
  box-sizing: border-box;
}



.s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-593804e9-54ef-44f1-b45d-eac955e6a553 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
      position: relative;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  margin: 0 !important;
  overflow: visible;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add background color handling */
  
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-content {
  
    justify-content: center;
  
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
  box-sizing: border-box;
}



.s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-593804e9-54ef-44f1-b45d-eac955e6a553 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
      position: relative;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  margin: 0 !important;
  overflow: visible;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add background color handling */
  
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-content {
  
    justify-content: center;
  
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
  box-sizing: border-box;
}



.s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-593804e9-54ef-44f1-b45d-eac955e6a553 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
      position: relative;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  margin: 0 !important;
  overflow: visible;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add background color handling */
  
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-content {
  
    justify-content: center;
  
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
  box-sizing: border-box;
}



.s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-593804e9-54ef-44f1-b45d-eac955e6a553 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
      position: relative;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  margin: 0 !important;
  overflow: visible;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-593804e9-54ef-44f1-b45d-eac955e6a553 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add background color handling */
  
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-593804e9-54ef-44f1-b45d-eac955e6a553 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-593804e9-54ef-44f1-b45d-eac955e6a553 .shogun-image-content {
  
    justify-content: center;
  
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shg-align-container {
  display: flex;
  justify-content: center
}

.s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image {
  box-sizing: border-box;
}



.s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-593804e9-54ef-44f1-b45d-eac955e6a553 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container {
      position: relative;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-593804e9-54ef-44f1-b45d-eac955e6a553 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  margin: 0 !important;
  overflow: visible;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add background color handling */
  
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
  box-sizing: border-box;
}



.s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c6fd021b-da03-4a81-9017-712cefd2f86b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
      position: relative;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  margin: 0 !important;
  overflow: visible;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add background color handling */
  
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
  box-sizing: border-box;
}



.s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c6fd021b-da03-4a81-9017-712cefd2f86b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
      position: relative;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  margin: 0 !important;
  overflow: visible;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add background color handling */
  
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
  box-sizing: border-box;
}



.s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c6fd021b-da03-4a81-9017-712cefd2f86b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
      position: relative;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  margin: 0 !important;
  overflow: visible;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add background color handling */
  
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
  box-sizing: border-box;
}



.s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c6fd021b-da03-4a81-9017-712cefd2f86b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
      position: relative;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  margin: 0 !important;
  overflow: visible;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c6fd021b-da03-4a81-9017-712cefd2f86b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add background color handling */
  
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c6fd021b-da03-4a81-9017-712cefd2f86b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c6fd021b-da03-4a81-9017-712cefd2f86b .shogun-image-content {
  
    justify-content: center;
  
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image {
  box-sizing: border-box;
}



.s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c6fd021b-da03-4a81-9017-712cefd2f86b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container {
      position: relative;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c6fd021b-da03-4a81-9017-712cefd2f86b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  margin: 0 !important;
  overflow: visible;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add background color handling */
  
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
  box-sizing: border-box;
}



.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
      position: relative;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  margin: 0 !important;
  overflow: visible;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add background color handling */
  
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
  box-sizing: border-box;
}



.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
      position: relative;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  margin: 0 !important;
  overflow: visible;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add background color handling */
  
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
  box-sizing: border-box;
}



.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
      position: relative;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  margin: 0 !important;
  overflow: visible;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add background color handling */
  
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
  box-sizing: border-box;
}



.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
      position: relative;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  margin: 0 !important;
  overflow: visible;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add background color handling */
  
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image {
  box-sizing: border-box;
}



.s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container {
      position: relative;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ca27043-c4b4-4917-b42b-4dba9e80a802 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-13d97eb1-8101-4683-a486-8eabb5116305 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-13d97eb1-8101-4683-a486-8eabb5116305 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-6737e4fa-a779-4c9b-8f6a-75b0897b39fb {
  margin-bottom: 10px;
}

#s-7a0d082e-af73-4100-a62e-1589c97e07ea {
  margin-bottom: 10px;
}

#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb-root {
    text-align: left;
  }


#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb-root {
    text-align: left;
  }


#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb-root {
    text-align: left;
  }


#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb-root {
    text-align: left;
  }


#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb-root {
    text-align: left;
  }


#s-d8f91c12-fed8-4dd4-8b53-22c3df1989bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-634ce426-857a-4f93-9573-129bb1f73c5b {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-634ce426-857a-4f93-9573-129bb1f73c5b .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-6b9140d5-c547-423b-b675-884f3340a22c {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6b9140d5-c547-423b-b675-884f3340a22c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-05507ad1-d69a-4272-bdeb-e37e89d0787c {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-05507ad1-d69a-4272-bdeb-e37e89d0787c {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-05507ad1-d69a-4272-bdeb-e37e89d0787c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-05507ad1-d69a-4272-bdeb-e37e89d0787c .shg-sld-nav-button.shg-sld-left,
#s-05507ad1-d69a-4272-bdeb-e37e89d0787c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  margin: 0 !important;
  overflow: visible;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add background color handling */
  
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
  box-sizing: border-box;
}



.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
      position: relative;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  margin: 0 !important;
  overflow: visible;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add background color handling */
  
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
  box-sizing: border-box;
}



.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
      position: relative;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  margin: 0 !important;
  overflow: visible;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add background color handling */
  
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
  box-sizing: border-box;
}



.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
      position: relative;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  margin: 0 !important;
  overflow: visible;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add background color handling */
  
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
  box-sizing: border-box;
}



.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
      position: relative;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  margin: 0 !important;
  overflow: visible;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add background color handling */
  
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a .shogun-image-content {
  
    justify-content: center;
  
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image {
  box-sizing: border-box;
}



.s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container {
      position: relative;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-40a4ae60-b2f4-4086-87f0-a3d3d4a3cc1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  text-align: center;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  margin: 0 !important;
  overflow: visible;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add background color handling */
  
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
    
    
    
    
  }


.s-2e71ca38-1455-4d43-86d3-b6642526d68c .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
  box-sizing: border-box;
}



.s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  
}


@media (min-width: 1200px){#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  margin: 0 !important;
  overflow: visible;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add background color handling */
  
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
    
    
    
    
  }


.s-2e71ca38-1455-4d43-86d3-b6642526d68c .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
  box-sizing: border-box;
}



.s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  margin: 0 !important;
  overflow: visible;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add background color handling */
  
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
    
    
    
    
  }


.s-2e71ca38-1455-4d43-86d3-b6642526d68c .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
  box-sizing: border-box;
}



.s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  margin: 0 !important;
  overflow: visible;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add background color handling */
  
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
    
    
    
    
  }


.s-2e71ca38-1455-4d43-86d3-b6642526d68c .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
  box-sizing: border-box;
}



.s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  
}


}@media (max-width: 767px){#s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  margin: 0 !important;
  overflow: visible;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2e71ca38-1455-4d43-86d3-b6642526d68c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add background color handling */
  
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
    
    
    
    
  }


.s-2e71ca38-1455-4d43-86d3-b6642526d68c .shogun-image-content {
  
    justify-content: center;
  
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e71ca38-1455-4d43-86d3-b6642526d68c.shogun-image {
  box-sizing: border-box;
}



.s-2e71ca38-1455-4d43-86d3-b6642526d68c img.shogun-image {
  
}


}
#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  text-align: center;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  margin: 0 !important;
  overflow: visible;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add background color handling */
  
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
    
    
    
    
  }


.s-80c0d066-4902-4904-af1c-8bb896c1a18a .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
  box-sizing: border-box;
}



.s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  
}


@media (min-width: 1200px){#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  margin: 0 !important;
  overflow: visible;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add background color handling */
  
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
    
    
    
    
  }


.s-80c0d066-4902-4904-af1c-8bb896c1a18a .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
  box-sizing: border-box;
}



.s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  margin: 0 !important;
  overflow: visible;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add background color handling */
  
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
    
    
    
    
  }


.s-80c0d066-4902-4904-af1c-8bb896c1a18a .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
  box-sizing: border-box;
}



.s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  margin: 0 !important;
  overflow: visible;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add background color handling */
  
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
    
    
    
    
  }


.s-80c0d066-4902-4904-af1c-8bb896c1a18a .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
  box-sizing: border-box;
}



.s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  
}


}@media (max-width: 767px){#s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  margin: 0 !important;
  overflow: visible;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80c0d066-4902-4904-af1c-8bb896c1a18a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add background color handling */
  
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
    
    
    
    
  }


.s-80c0d066-4902-4904-af1c-8bb896c1a18a .shogun-image-content {
  
    justify-content: center;
  
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80c0d066-4902-4904-af1c-8bb896c1a18a.shogun-image {
  box-sizing: border-box;
}



.s-80c0d066-4902-4904-af1c-8bb896c1a18a img.shogun-image {
  
}


}
#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  text-align: center;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  margin: 0 !important;
  overflow: visible;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add background color handling */
  
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
    
    
    
    
  }


.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
  box-sizing: border-box;
}



.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  
}


@media (min-width: 1200px){#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  margin: 0 !important;
  overflow: visible;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add background color handling */
  
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
    
    
    
    
  }


.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
  box-sizing: border-box;
}



.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  margin: 0 !important;
  overflow: visible;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add background color handling */
  
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
    
    
    
    
  }


.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
  box-sizing: border-box;
}



.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  margin: 0 !important;
  overflow: visible;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add background color handling */
  
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
    
    
    
    
  }


.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
  box-sizing: border-box;
}



.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  
}


}@media (max-width: 767px){#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  margin: 0 !important;
  overflow: visible;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9195551d-d5f4-46a6-b95b-b8c6c41e496f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add background color handling */
  
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
    
    
    
    
  }


.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f .shogun-image-content {
  
    justify-content: center;
  
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9195551d-d5f4-46a6-b95b-b8c6c41e496f.shogun-image {
  box-sizing: border-box;
}



.s-9195551d-d5f4-46a6-b95b-b8c6c41e496f img.shogun-image {
  
}


}
#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  margin: 0 !important;
  overflow: visible;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add background color handling */
  
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
  box-sizing: border-box;
}



.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
      position: relative;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  margin: 0 !important;
  overflow: visible;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add background color handling */
  
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
  box-sizing: border-box;
}



.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
      position: relative;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  margin: 0 !important;
  overflow: visible;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add background color handling */
  
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
  box-sizing: border-box;
}



.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
      position: relative;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  margin: 0 !important;
  overflow: visible;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add background color handling */
  
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
  box-sizing: border-box;
}



.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
      position: relative;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  margin: 0 !important;
  overflow: visible;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add background color handling */
  
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image {
  box-sizing: border-box;
}



.s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container {
      position: relative;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-edaa7488-2b8e-4bae-9d93-fad007c17a41 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  margin: 0 !important;
  overflow: visible;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add background color handling */
  
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
  box-sizing: border-box;
}



.s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
      position: relative;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  margin: 0 !important;
  overflow: visible;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add background color handling */
  
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
  box-sizing: border-box;
}



.s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
      position: relative;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  margin: 0 !important;
  overflow: visible;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add background color handling */
  
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
  box-sizing: border-box;
}



.s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
      position: relative;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  margin: 0 !important;
  overflow: visible;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add background color handling */
  
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
  box-sizing: border-box;
}



.s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
      position: relative;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  margin: 0 !important;
  overflow: visible;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add background color handling */
  
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-21ca7328-8f11-4eec-9de9-265e01f64be0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image {
  box-sizing: border-box;
}



.s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container {
      position: relative;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21ca7328-8f11-4eec-9de9-265e01f64be0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  margin: 0 !important;
  overflow: visible;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add background color handling */
  
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
  box-sizing: border-box;
}



.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
      position: relative;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  margin: 0 !important;
  overflow: visible;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add background color handling */
  
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
  box-sizing: border-box;
}



.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
      position: relative;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  margin: 0 !important;
  overflow: visible;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add background color handling */
  
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
  box-sizing: border-box;
}



.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
      position: relative;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  margin: 0 !important;
  overflow: visible;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add background color handling */
  
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
  box-sizing: border-box;
}



.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
      position: relative;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  margin: 0 !important;
  overflow: visible;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add background color handling */
  
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image {
  box-sizing: border-box;
}



.s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container {
      position: relative;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee7d5f7d-2e18-435b-8e0a-7911b3081e0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-19bc5ab3-01db-41b9-ae3b-83965bbd3546 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-19bc5ab3-01db-41b9-ae3b-83965bbd3546 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-aab090a6-7804-4d9c-8b6a-ef8d6db91bf5 {
  margin-bottom: 10px;
}

#s-975a652a-4bca-4da4-b7f7-e38d8b44a4ef {
  margin-bottom: 10px;
}

#s-ce707c86-4b30-403b-af03-94a0415cb710 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-ce707c86-4b30-403b-af03-94a0415cb710:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ce707c86-4b30-403b-af03-94a0415cb710:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ce707c86-4b30-403b-af03-94a0415cb710-root {
    text-align: left;
  }


#s-ce707c86-4b30-403b-af03-94a0415cb710.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ce707c86-4b30-403b-af03-94a0415cb710-root {
    text-align: left;
  }


#s-ce707c86-4b30-403b-af03-94a0415cb710.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ce707c86-4b30-403b-af03-94a0415cb710-root {
    text-align: left;
  }


#s-ce707c86-4b30-403b-af03-94a0415cb710.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ce707c86-4b30-403b-af03-94a0415cb710-root {
    text-align: left;
  }


#s-ce707c86-4b30-403b-af03-94a0415cb710.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ce707c86-4b30-403b-af03-94a0415cb710-root {
    text-align: left;
  }


#s-ce707c86-4b30-403b-af03-94a0415cb710.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8406eb1a-22ac-45ff-820d-e1d9da1e8613 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8406eb1a-22ac-45ff-820d-e1d9da1e8613"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-0b61bc2d-871f-45fc-a294-1dda8172a25e {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-0b61bc2d-871f-45fc-a294-1dda8172a25e {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-0b61bc2d-871f-45fc-a294-1dda8172a25e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0b61bc2d-871f-45fc-a294-1dda8172a25e .shg-sld-nav-button.shg-sld-left,
#s-0b61bc2d-871f-45fc-a294-1dda8172a25e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  margin: 0 !important;
  overflow: visible;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add background color handling */
  
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
  box-sizing: border-box;
}



.s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
      position: relative;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  margin: 0 !important;
  overflow: visible;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add background color handling */
  
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
  box-sizing: border-box;
}



.s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
      position: relative;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  margin: 0 !important;
  overflow: visible;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add background color handling */
  
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
  box-sizing: border-box;
}



.s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
      position: relative;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  margin: 0 !important;
  overflow: visible;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add background color handling */
  
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
  box-sizing: border-box;
}



.s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
      position: relative;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  margin: 0 !important;
  overflow: visible;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add background color handling */
  
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-501430e2-bfd8-43d0-ae3b-50af344430c2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image {
  box-sizing: border-box;
}



.s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container {
      position: relative;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-501430e2-bfd8-43d0-ae3b-50af344430c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  text-align: center;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  margin: 0 !important;
  overflow: visible;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add background color handling */
  
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
    
    
    
    
  }


.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
  box-sizing: border-box;
}



.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  
}


@media (min-width: 1200px){#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  margin: 0 !important;
  overflow: visible;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add background color handling */
  
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
    
    
    
    
  }


.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
  box-sizing: border-box;
}



.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  margin: 0 !important;
  overflow: visible;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add background color handling */
  
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
    
    
    
    
  }


.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
  box-sizing: border-box;
}



.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  margin: 0 !important;
  overflow: visible;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add background color handling */
  
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
    
    
    
    
  }


.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
  box-sizing: border-box;
}



.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  
}


}@media (max-width: 767px){#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  margin: 0 !important;
  overflow: visible;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7ecee692-e1b8-4baf-8be3-de7793f2b21c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add background color handling */
  
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
    
    
    
    
  }


.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c .shogun-image-content {
  
    justify-content: center;
  
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ecee692-e1b8-4baf-8be3-de7793f2b21c.shogun-image {
  box-sizing: border-box;
}



.s-7ecee692-e1b8-4baf-8be3-de7793f2b21c img.shogun-image {
  
}


}
#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  text-align: center;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
    
    
    
    
  }


.s-3e5d17ca-c037-4084-876e-a948596671b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
  box-sizing: border-box;
}



.s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  
}


@media (min-width: 1200px){#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
    
    
    
    
  }


.s-3e5d17ca-c037-4084-876e-a948596671b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
  box-sizing: border-box;
}



.s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
    
    
    
    
  }


.s-3e5d17ca-c037-4084-876e-a948596671b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
  box-sizing: border-box;
}



.s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
    
    
    
    
  }


.s-3e5d17ca-c037-4084-876e-a948596671b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
  box-sizing: border-box;
}



.s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  
}


}@media (max-width: 767px){#s-3e5d17ca-c037-4084-876e-a948596671b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3e5d17ca-c037-4084-876e-a948596671b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
    
    
    
    
  }


.s-3e5d17ca-c037-4084-876e-a948596671b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5d17ca-c037-4084-876e-a948596671b9.shogun-image {
  box-sizing: border-box;
}



.s-3e5d17ca-c037-4084-876e-a948596671b9 img.shogun-image {
  
}


}
#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  text-align: center;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  margin: 0 !important;
  overflow: visible;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add background color handling */
  
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
    
    
    
    
  }


.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
  box-sizing: border-box;
}



.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  
}


@media (min-width: 1200px){#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  margin: 0 !important;
  overflow: visible;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add background color handling */
  
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
    
    
    
    
  }


.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
  box-sizing: border-box;
}



.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  margin: 0 !important;
  overflow: visible;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add background color handling */
  
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
    
    
    
    
  }


.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
  box-sizing: border-box;
}



.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  margin: 0 !important;
  overflow: visible;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add background color handling */
  
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
    
    
    
    
  }


.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
  box-sizing: border-box;
}



.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  
}


}@media (max-width: 767px){#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  margin: 0 !important;
  overflow: visible;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-53737fcb-e368-4bb4-a585-c081ab2eb0ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add background color handling */
  
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
    
    
    
    
  }


.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53737fcb-e368-4bb4-a585-c081ab2eb0ae.shogun-image {
  box-sizing: border-box;
}



.s-53737fcb-e368-4bb4-a585-c081ab2eb0ae img.shogun-image {
  
}


}
#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  margin: 0 !important;
  overflow: visible;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add background color handling */
  
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
  box-sizing: border-box;
}



.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
      position: relative;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  margin: 0 !important;
  overflow: visible;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add background color handling */
  
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
  box-sizing: border-box;
}



.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
      position: relative;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  margin: 0 !important;
  overflow: visible;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add background color handling */
  
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
  box-sizing: border-box;
}



.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
      position: relative;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  margin: 0 !important;
  overflow: visible;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add background color handling */
  
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
  box-sizing: border-box;
}



.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
      position: relative;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  margin: 0 !important;
  overflow: visible;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add background color handling */
  
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d .shogun-image-content {
  
    justify-content: center;
  
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image {
  box-sizing: border-box;
}



.s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container {
      position: relative;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8fdd411-9d7c-434d-afc3-c81fbea5485d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
  box-sizing: border-box;
}



.s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
      position: relative;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
  box-sizing: border-box;
}



.s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
      position: relative;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
  box-sizing: border-box;
}



.s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
      position: relative;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
  box-sizing: border-box;
}



.s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
      position: relative;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  margin: 0 !important;
  overflow: visible;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add background color handling */
  
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0d53fb59-7df9-48a2-8888-27f59a11c089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image {
  box-sizing: border-box;
}



.s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container {
      position: relative;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d53fb59-7df9-48a2-8888-27f59a11c089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
  box-sizing: border-box;
}



.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
      position: relative;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
  box-sizing: border-box;
}



.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
      position: relative;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
  box-sizing: border-box;
}



.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
      position: relative;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
  box-sizing: border-box;
}



.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
      position: relative;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image {
  box-sizing: border-box;
}



.s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container {
      position: relative;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df7d9f3b-24c0-4696-bf14-5b94a4e2f2d2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-2c23afe3-7279-4ada-9986-33cbeefacb42 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2c23afe3-7279-4ada-9986-33cbeefacb42 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-83738a86-b6b2-42fb-8e66-8b7366ae446d {
  margin-bottom: 10px;
}

#s-8f70a434-7f8f-485b-ad0c-ce6083092209 {
  margin-bottom: 10px;
}

#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a-root {
    text-align: left;
  }


#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a-root {
    text-align: left;
  }


#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a-root {
    text-align: left;
  }


#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a-root {
    text-align: left;
  }


#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a-root {
    text-align: left;
  }


#s-2eec8b52-d59f-4fc6-9e3b-21f0c9f5014a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6cc8cff-fd1c-45cb-9a23-0606c0e1f26a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-c9e94582-5e8c-4823-8a24-bcc31a8e4d55 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-c9e94582-5e8c-4823-8a24-bcc31a8e4d55 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-c9e94582-5e8c-4823-8a24-bcc31a8e4d55 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c9e94582-5e8c-4823-8a24-bcc31a8e4d55 .shg-sld-nav-button.shg-sld-left,
#s-c9e94582-5e8c-4823-8a24-bcc31a8e4d55 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  margin: 0 !important;
  overflow: visible;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add background color handling */
  
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
  box-sizing: border-box;
}



.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
      position: relative;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  margin: 0 !important;
  overflow: visible;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add background color handling */
  
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
  box-sizing: border-box;
}



.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
      position: relative;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  margin: 0 !important;
  overflow: visible;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add background color handling */
  
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
  box-sizing: border-box;
}



.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
      position: relative;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  margin: 0 !important;
  overflow: visible;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add background color handling */
  
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
  box-sizing: border-box;
}



.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
      position: relative;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  margin: 0 !important;
  overflow: visible;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add background color handling */
  
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image {
  box-sizing: border-box;
}



.s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container {
      position: relative;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7aabf0fc-6f89-4015-a8f2-5cc6e909769b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  text-align: center;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
    
    
    
    
  }


.s-bf291ccd-1196-4c20-833b-4610ed2845d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
  box-sizing: border-box;
}



.s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  
}


@media (min-width: 1200px){#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
    
    
    
    
  }


.s-bf291ccd-1196-4c20-833b-4610ed2845d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
  box-sizing: border-box;
}



.s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
    
    
    
    
  }


.s-bf291ccd-1196-4c20-833b-4610ed2845d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
  box-sizing: border-box;
}



.s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
    
    
    
    
  }


.s-bf291ccd-1196-4c20-833b-4610ed2845d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
  box-sizing: border-box;
}



.s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  
}


}@media (max-width: 767px){#s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  margin: 0 !important;
  overflow: visible;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bf291ccd-1196-4c20-833b-4610ed2845d0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add background color handling */
  
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
    
    
    
    
  }


.s-bf291ccd-1196-4c20-833b-4610ed2845d0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf291ccd-1196-4c20-833b-4610ed2845d0.shogun-image {
  box-sizing: border-box;
}



.s-bf291ccd-1196-4c20-833b-4610ed2845d0 img.shogun-image {
  
}


}
#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  text-align: center;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  margin: 0 !important;
  overflow: visible;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add background color handling */
  
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
    
    
    
    
  }


.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
  box-sizing: border-box;
}



.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  
}


@media (min-width: 1200px){#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  margin: 0 !important;
  overflow: visible;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add background color handling */
  
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
    
    
    
    
  }


.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
  box-sizing: border-box;
}



.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  margin: 0 !important;
  overflow: visible;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add background color handling */
  
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
    
    
    
    
  }


.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
  box-sizing: border-box;
}



.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  margin: 0 !important;
  overflow: visible;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add background color handling */
  
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
    
    
    
    
  }


.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
  box-sizing: border-box;
}



.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  
}


}@media (max-width: 767px){#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  margin: 0 !important;
  overflow: visible;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add background color handling */
  
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
    
    
    
    
  }


.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12832687-13b0-4bd4-9bf6-3657c2d72fe6.shogun-image {
  box-sizing: border-box;
}



.s-12832687-13b0-4bd4-9bf6-3657c2d72fe6 img.shogun-image {
  
}


}
#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  text-align: center;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  margin: 0 !important;
  overflow: visible;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add background color handling */
  
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
    
    
    
    
  }


.s-970155c6-0d81-40d7-ae00-ba68e41f6998 .shogun-image-content {
  
    justify-content: center;
  
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shg-align-container {
  display: flex;
  justify-content: center
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
  box-sizing: border-box;
}



.s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  
}


@media (min-width: 1200px){#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  margin: 0 !important;
  overflow: visible;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add background color handling */
  
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
    
    
    
    
  }


.s-970155c6-0d81-40d7-ae00-ba68e41f6998 .shogun-image-content {
  
    justify-content: center;
  
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shg-align-container {
  display: flex;
  justify-content: center
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
  box-sizing: border-box;
}



.s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  margin: 0 !important;
  overflow: visible;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add background color handling */
  
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
    
    
    
    
  }


.s-970155c6-0d81-40d7-ae00-ba68e41f6998 .shogun-image-content {
  
    justify-content: center;
  
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shg-align-container {
  display: flex;
  justify-content: center
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
  box-sizing: border-box;
}



.s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  margin: 0 !important;
  overflow: visible;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add background color handling */
  
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
    
    
    
    
  }


.s-970155c6-0d81-40d7-ae00-ba68e41f6998 .shogun-image-content {
  
    justify-content: center;
  
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shg-align-container {
  display: flex;
  justify-content: center
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
  box-sizing: border-box;
}



.s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  
}


}@media (max-width: 767px){#s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  margin: 0 !important;
  overflow: visible;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-970155c6-0d81-40d7-ae00-ba68e41f6998 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add background color handling */
  
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
    
    
    
    
  }


.s-970155c6-0d81-40d7-ae00-ba68e41f6998 .shogun-image-content {
  
    justify-content: center;
  
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shg-align-container {
  display: flex;
  justify-content: center
}

.s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-970155c6-0d81-40d7-ae00-ba68e41f6998.shogun-image {
  box-sizing: border-box;
}



.s-970155c6-0d81-40d7-ae00-ba68e41f6998 img.shogun-image {
  
}


}
#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  margin: 0 !important;
  overflow: visible;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add background color handling */
  
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-content {
  
    justify-content: center;
  
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
  box-sizing: border-box;
}



.s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-db8fce98-48e8-47c3-906a-19bd75f5583b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
      position: relative;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  margin: 0 !important;
  overflow: visible;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add background color handling */
  
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-content {
  
    justify-content: center;
  
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
  box-sizing: border-box;
}



.s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-db8fce98-48e8-47c3-906a-19bd75f5583b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
      position: relative;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  margin: 0 !important;
  overflow: visible;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add background color handling */
  
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-content {
  
    justify-content: center;
  
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
  box-sizing: border-box;
}



.s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-db8fce98-48e8-47c3-906a-19bd75f5583b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
      position: relative;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  margin: 0 !important;
  overflow: visible;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add background color handling */
  
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-content {
  
    justify-content: center;
  
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
  box-sizing: border-box;
}



.s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-db8fce98-48e8-47c3-906a-19bd75f5583b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
      position: relative;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  margin: 0 !important;
  overflow: visible;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db8fce98-48e8-47c3-906a-19bd75f5583b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add background color handling */
  
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-db8fce98-48e8-47c3-906a-19bd75f5583b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-db8fce98-48e8-47c3-906a-19bd75f5583b .shogun-image-content {
  
    justify-content: center;
  
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image {
  box-sizing: border-box;
}



.s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-db8fce98-48e8-47c3-906a-19bd75f5583b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container {
      position: relative;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db8fce98-48e8-47c3-906a-19bd75f5583b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  margin: 0 !important;
  overflow: visible;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add background color handling */
  
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-content {
  
    justify-content: center;
  
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
  box-sizing: border-box;
}



.s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
      position: relative;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  margin: 0 !important;
  overflow: visible;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add background color handling */
  
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-content {
  
    justify-content: center;
  
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
  box-sizing: border-box;
}



.s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
      position: relative;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  margin: 0 !important;
  overflow: visible;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add background color handling */
  
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-content {
  
    justify-content: center;
  
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
  box-sizing: border-box;
}



.s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
      position: relative;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  margin: 0 !important;
  overflow: visible;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add background color handling */
  
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-content {
  
    justify-content: center;
  
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
  box-sizing: border-box;
}



.s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
      position: relative;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  margin: 0 !important;
  overflow: visible;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add background color handling */
  
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-35fd1855-f4fe-467b-8de5-61cc7f56120f .shogun-image-content {
  
    justify-content: center;
  
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image {
  box-sizing: border-box;
}



.s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container {
      position: relative;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-35fd1855-f4fe-467b-8de5-61cc7f56120f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
  box-sizing: border-box;
}



.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
      position: relative;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
  box-sizing: border-box;
}



.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
      position: relative;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
  box-sizing: border-box;
}



.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
      position: relative;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
  box-sizing: border-box;
}



.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
      position: relative;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image {
  box-sizing: border-box;
}



.s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container {
      position: relative;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2bddf5-d1cc-499e-957b-3ac644568a67 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-da0fa1b0-8742-4edf-8aa2-7ca19c6d847a {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-da0fa1b0-8742-4edf-8aa2-7ca19c6d847a .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-9b4411f2-96e7-48e6-a3c0-0de69058356b {
  margin-bottom: 10px;
}

#s-1c7c8bda-4e53-4e67-82b1-a54913c419c9 {
  margin-bottom: 10px;
}

#s-56a2c562-7812-45d3-bafe-6bda8fc354d2 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-56a2c562-7812-45d3-bafe-6bda8fc354d2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-56a2c562-7812-45d3-bafe-6bda8fc354d2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-56a2c562-7812-45d3-bafe-6bda8fc354d2-root {
    text-align: left;
  }


#s-56a2c562-7812-45d3-bafe-6bda8fc354d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-56a2c562-7812-45d3-bafe-6bda8fc354d2-root {
    text-align: left;
  }


#s-56a2c562-7812-45d3-bafe-6bda8fc354d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-56a2c562-7812-45d3-bafe-6bda8fc354d2-root {
    text-align: left;
  }


#s-56a2c562-7812-45d3-bafe-6bda8fc354d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-56a2c562-7812-45d3-bafe-6bda8fc354d2-root {
    text-align: left;
  }


#s-56a2c562-7812-45d3-bafe-6bda8fc354d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-56a2c562-7812-45d3-bafe-6bda8fc354d2-root {
    text-align: left;
  }


#s-56a2c562-7812-45d3-bafe-6bda8fc354d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-95b0021d-b938-47ce-8e53-feee5604500c {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-95b0021d-b938-47ce-8e53-feee5604500c .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-1a83faae-8ca2-46b2-b132-a0c61a800529 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1a83faae-8ca2-46b2-b132-a0c61a800529"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-0f74a7cf-a4d1-4dd8-b9f9-59217504dea9 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-0f74a7cf-a4d1-4dd8-b9f9-59217504dea9 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-0f74a7cf-a4d1-4dd8-b9f9-59217504dea9 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0f74a7cf-a4d1-4dd8-b9f9-59217504dea9 .shg-sld-nav-button.shg-sld-left,
#s-0f74a7cf-a4d1-4dd8-b9f9-59217504dea9 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  margin: 0 !important;
  overflow: visible;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add background color handling */
  
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
  box-sizing: border-box;
}



.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
      position: relative;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  margin: 0 !important;
  overflow: visible;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add background color handling */
  
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
  box-sizing: border-box;
}



.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
      position: relative;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  margin: 0 !important;
  overflow: visible;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add background color handling */
  
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
  box-sizing: border-box;
}



.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
      position: relative;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  margin: 0 !important;
  overflow: visible;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add background color handling */
  
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
  box-sizing: border-box;
}



.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
      position: relative;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  margin: 0 !important;
  overflow: visible;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add background color handling */
  
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image {
  box-sizing: border-box;
}



.s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container {
      position: relative;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1a8da57c-1f20-4428-a6c2-e0bed87e8e05 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  text-align: center;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
    
    
    
    
  }


.s-2d8d039e-07f5-4e2c-8579-7b391893de67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
  box-sizing: border-box;
}



.s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
    
    
    
    
  }


.s-2d8d039e-07f5-4e2c-8579-7b391893de67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
  box-sizing: border-box;
}



.s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
    
    
    
    
  }


.s-2d8d039e-07f5-4e2c-8579-7b391893de67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
  box-sizing: border-box;
}



.s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
    
    
    
    
  }


.s-2d8d039e-07f5-4e2c-8579-7b391893de67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
  box-sizing: border-box;
}



.s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  margin: 0 !important;
  overflow: visible;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2d8d039e-07f5-4e2c-8579-7b391893de67 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add background color handling */
  
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
    
    
    
    
  }


.s-2d8d039e-07f5-4e2c-8579-7b391893de67 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d8d039e-07f5-4e2c-8579-7b391893de67.shogun-image {
  box-sizing: border-box;
}



.s-2d8d039e-07f5-4e2c-8579-7b391893de67 img.shogun-image {
  
}


}
#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  text-align: center;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  margin: 0 !important;
  overflow: visible;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add background color handling */
  
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
    
    
    
    
  }


.s-40dd8429-958c-4cda-be5d-d744d979cf7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
  box-sizing: border-box;
}



.s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  
}


@media (min-width: 1200px){#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  margin: 0 !important;
  overflow: visible;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add background color handling */
  
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
    
    
    
    
  }


.s-40dd8429-958c-4cda-be5d-d744d979cf7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
  box-sizing: border-box;
}



.s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  margin: 0 !important;
  overflow: visible;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add background color handling */
  
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
    
    
    
    
  }


.s-40dd8429-958c-4cda-be5d-d744d979cf7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
  box-sizing: border-box;
}



.s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  margin: 0 !important;
  overflow: visible;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add background color handling */
  
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
    
    
    
    
  }


.s-40dd8429-958c-4cda-be5d-d744d979cf7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
  box-sizing: border-box;
}



.s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  
}


}@media (max-width: 767px){#s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  margin: 0 !important;
  overflow: visible;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-40dd8429-958c-4cda-be5d-d744d979cf7b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add background color handling */
  
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
    
    
    
    
  }


.s-40dd8429-958c-4cda-be5d-d744d979cf7b .shogun-image-content {
  
    justify-content: center;
  
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-40dd8429-958c-4cda-be5d-d744d979cf7b.shogun-image {
  box-sizing: border-box;
}



.s-40dd8429-958c-4cda-be5d-d744d979cf7b img.shogun-image {
  
}


}
#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  text-align: center;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  margin: 0 !important;
  overflow: visible;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add background color handling */
  
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
    
    
    
    
  }


.s-79494493-2f51-44ef-b3c7-70fe798fce80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
  box-sizing: border-box;
}



.s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  
}


@media (min-width: 1200px){#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  margin: 0 !important;
  overflow: visible;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add background color handling */
  
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
    
    
    
    
  }


.s-79494493-2f51-44ef-b3c7-70fe798fce80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
  box-sizing: border-box;
}



.s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  margin: 0 !important;
  overflow: visible;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add background color handling */
  
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
    
    
    
    
  }


.s-79494493-2f51-44ef-b3c7-70fe798fce80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
  box-sizing: border-box;
}



.s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  margin: 0 !important;
  overflow: visible;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add background color handling */
  
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
    
    
    
    
  }


.s-79494493-2f51-44ef-b3c7-70fe798fce80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
  box-sizing: border-box;
}



.s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  
}


}@media (max-width: 767px){#s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  margin: 0 !important;
  overflow: visible;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-79494493-2f51-44ef-b3c7-70fe798fce80 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add background color handling */
  
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
    
    
    
    
  }


.s-79494493-2f51-44ef-b3c7-70fe798fce80 .shogun-image-content {
  
    justify-content: center;
  
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-79494493-2f51-44ef-b3c7-70fe798fce80.shogun-image {
  box-sizing: border-box;
}



.s-79494493-2f51-44ef-b3c7-70fe798fce80 img.shogun-image {
  
}


}
#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  margin: 0 !important;
  overflow: visible;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add background color handling */
  
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-content {
  
    justify-content: center;
  
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
  box-sizing: border-box;
}



.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
      position: relative;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  margin: 0 !important;
  overflow: visible;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add background color handling */
  
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-content {
  
    justify-content: center;
  
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
  box-sizing: border-box;
}



.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
      position: relative;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  margin: 0 !important;
  overflow: visible;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add background color handling */
  
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-content {
  
    justify-content: center;
  
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
  box-sizing: border-box;
}



.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
      position: relative;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  margin: 0 !important;
  overflow: visible;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add background color handling */
  
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-content {
  
    justify-content: center;
  
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
  box-sizing: border-box;
}



.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
      position: relative;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  margin: 0 !important;
  overflow: visible;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add background color handling */
  
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f .shogun-image-content {
  
    justify-content: center;
  
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image {
  box-sizing: border-box;
}



.s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container {
      position: relative;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c961c12a-02d3-4dd1-ab4e-a80b58fa383f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  margin: 0 !important;
  overflow: visible;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add background color handling */
  
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-content {
  
    justify-content: center;
  
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
  box-sizing: border-box;
}



.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
      position: relative;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  margin: 0 !important;
  overflow: visible;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add background color handling */
  
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-content {
  
    justify-content: center;
  
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
  box-sizing: border-box;
}



.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
      position: relative;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  margin: 0 !important;
  overflow: visible;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add background color handling */
  
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-content {
  
    justify-content: center;
  
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
  box-sizing: border-box;
}



.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
      position: relative;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  margin: 0 !important;
  overflow: visible;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add background color handling */
  
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-content {
  
    justify-content: center;
  
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
  box-sizing: border-box;
}



.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
      position: relative;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  margin: 0 !important;
  overflow: visible;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add background color handling */
  
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d .shogun-image-content {
  
    justify-content: center;
  
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image {
  box-sizing: border-box;
}



.s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container {
      position: relative;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-49256dab-4e72-4ba4-9f84-6ba19fb9f97d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
  box-sizing: border-box;
}



.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
      position: relative;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
  box-sizing: border-box;
}



.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
      position: relative;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
  box-sizing: border-box;
}



.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
      position: relative;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
  box-sizing: border-box;
}



.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
      position: relative;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image {
  box-sizing: border-box;
}



.s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container {
      position: relative;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73a9b6df-ecb2-4add-9c34-3935c3bb23e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-382f4e44-134a-4d69-af30-7d905ae1a0d8 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-382f4e44-134a-4d69-af30-7d905ae1a0d8 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-02845fa5-1241-49f7-923e-1e3e5995fbb1 {
  margin-bottom: 10px;
}

#s-d9d0a20e-d4b1-42cf-a195-aaa15bba7409 {
  margin-bottom: 10px;
}

#s-a84204d4-0071-4d06-b9eb-93fed68774b3 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-a84204d4-0071-4d06-b9eb-93fed68774b3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a84204d4-0071-4d06-b9eb-93fed68774b3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a84204d4-0071-4d06-b9eb-93fed68774b3-root {
    text-align: left;
  }


#s-a84204d4-0071-4d06-b9eb-93fed68774b3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a84204d4-0071-4d06-b9eb-93fed68774b3-root {
    text-align: left;
  }


#s-a84204d4-0071-4d06-b9eb-93fed68774b3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a84204d4-0071-4d06-b9eb-93fed68774b3-root {
    text-align: left;
  }


#s-a84204d4-0071-4d06-b9eb-93fed68774b3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a84204d4-0071-4d06-b9eb-93fed68774b3-root {
    text-align: left;
  }


#s-a84204d4-0071-4d06-b9eb-93fed68774b3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a84204d4-0071-4d06-b9eb-93fed68774b3-root {
    text-align: left;
  }


#s-a84204d4-0071-4d06-b9eb-93fed68774b3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-11e8d9f2-a829-4a21-bad0-ac23e09c9843 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-11e8d9f2-a829-4a21-bad0-ac23e09c9843"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-226f31ff-1513-4aaa-ad76-0b289725c975 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-226f31ff-1513-4aaa-ad76-0b289725c975 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-226f31ff-1513-4aaa-ad76-0b289725c975 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-226f31ff-1513-4aaa-ad76-0b289725c975 .shg-sld-nav-button.shg-sld-left,
#s-226f31ff-1513-4aaa-ad76-0b289725c975 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  margin: 0 !important;
  overflow: visible;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add background color handling */
  
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
  box-sizing: border-box;
}



.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
      position: relative;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  margin: 0 !important;
  overflow: visible;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add background color handling */
  
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
  box-sizing: border-box;
}



.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
      position: relative;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  margin: 0 !important;
  overflow: visible;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add background color handling */
  
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
  box-sizing: border-box;
}



.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
      position: relative;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  margin: 0 !important;
  overflow: visible;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add background color handling */
  
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
  box-sizing: border-box;
}



.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
      position: relative;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  margin: 0 !important;
  overflow: visible;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add background color handling */
  
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image {
  box-sizing: border-box;
}



.s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container {
      position: relative;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-43f85705-59cd-4d8a-a5a5-51d3d51abb93 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  text-align: center;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  margin: 0 !important;
  overflow: visible;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add background color handling */
  
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
    
    
    
    
  }


.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 .shogun-image-content {
  
    justify-content: center;
  
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shg-align-container {
  display: flex;
  justify-content: center
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
  box-sizing: border-box;
}



.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  
}


@media (min-width: 1200px){#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  margin: 0 !important;
  overflow: visible;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add background color handling */
  
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
    
    
    
    
  }


.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 .shogun-image-content {
  
    justify-content: center;
  
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shg-align-container {
  display: flex;
  justify-content: center
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
  box-sizing: border-box;
}



.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  margin: 0 !important;
  overflow: visible;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add background color handling */
  
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
    
    
    
    
  }


.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 .shogun-image-content {
  
    justify-content: center;
  
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shg-align-container {
  display: flex;
  justify-content: center
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
  box-sizing: border-box;
}



.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  margin: 0 !important;
  overflow: visible;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add background color handling */
  
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
    
    
    
    
  }


.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 .shogun-image-content {
  
    justify-content: center;
  
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shg-align-container {
  display: flex;
  justify-content: center
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
  box-sizing: border-box;
}



.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  
}


}@media (max-width: 767px){#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  margin: 0 !important;
  overflow: visible;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add background color handling */
  
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
    
    
    
    
  }


.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 .shogun-image-content {
  
    justify-content: center;
  
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shg-align-container {
  display: flex;
  justify-content: center
}

.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-856f15b2-7b7b-46bd-90ea-3f404a3e6151.shogun-image {
  box-sizing: border-box;
}



.s-856f15b2-7b7b-46bd-90ea-3f404a3e6151 img.shogun-image {
  
}


}
#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  text-align: center;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  margin: 0 !important;
  overflow: visible;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add background color handling */
  
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
    
    
    
    
  }


.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca .shogun-image-content {
  
    justify-content: center;
  
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
  box-sizing: border-box;
}



.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  
}


@media (min-width: 1200px){#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  margin: 0 !important;
  overflow: visible;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add background color handling */
  
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
    
    
    
    
  }


.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca .shogun-image-content {
  
    justify-content: center;
  
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
  box-sizing: border-box;
}



.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  margin: 0 !important;
  overflow: visible;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add background color handling */
  
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
    
    
    
    
  }


.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca .shogun-image-content {
  
    justify-content: center;
  
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
  box-sizing: border-box;
}



.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  margin: 0 !important;
  overflow: visible;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add background color handling */
  
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
    
    
    
    
  }


.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca .shogun-image-content {
  
    justify-content: center;
  
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
  box-sizing: border-box;
}



.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  
}


}@media (max-width: 767px){#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  margin: 0 !important;
  overflow: visible;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-78b28b05-3fd1-4e54-af23-a59fa6af0bca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add background color handling */
  
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
    
    
    
    
  }


.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca .shogun-image-content {
  
    justify-content: center;
  
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78b28b05-3fd1-4e54-af23-a59fa6af0bca.shogun-image {
  box-sizing: border-box;
}



.s-78b28b05-3fd1-4e54-af23-a59fa6af0bca img.shogun-image {
  
}


}
#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  text-align: center;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  margin: 0 !important;
  overflow: visible;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add background color handling */
  
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
    
    
    
    
  }


.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
  box-sizing: border-box;
}



.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  
}


@media (min-width: 1200px){#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  margin: 0 !important;
  overflow: visible;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add background color handling */
  
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
    
    
    
    
  }


.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
  box-sizing: border-box;
}



.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  margin: 0 !important;
  overflow: visible;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add background color handling */
  
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
    
    
    
    
  }


.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
  box-sizing: border-box;
}



.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  margin: 0 !important;
  overflow: visible;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add background color handling */
  
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
    
    
    
    
  }


.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
  box-sizing: border-box;
}



.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  
}


}@media (max-width: 767px){#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  margin: 0 !important;
  overflow: visible;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add background color handling */
  
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
    
    
    
    
  }


.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a .shogun-image-content {
  
    justify-content: center;
  
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a.shogun-image {
  box-sizing: border-box;
}



.s-0fc832bb-2f8b-4e47-940b-36b6e5724f9a img.shogun-image {
  
}


}
#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  margin: 0 !important;
  overflow: visible;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add background color handling */
  
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
  box-sizing: border-box;
}



.s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a2e99b6-942d-4937-a416-be99f648f54b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
      position: relative;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  margin: 0 !important;
  overflow: visible;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add background color handling */
  
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
  box-sizing: border-box;
}



.s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a2e99b6-942d-4937-a416-be99f648f54b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
      position: relative;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  margin: 0 !important;
  overflow: visible;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add background color handling */
  
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
  box-sizing: border-box;
}



.s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a2e99b6-942d-4937-a416-be99f648f54b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
      position: relative;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  margin: 0 !important;
  overflow: visible;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add background color handling */
  
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
  box-sizing: border-box;
}



.s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a2e99b6-942d-4937-a416-be99f648f54b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
      position: relative;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-7a2e99b6-942d-4937-a416-be99f648f54b {
  margin: 0 !important;
  overflow: visible;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7a2e99b6-942d-4937-a416-be99f648f54b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add background color handling */
  
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a2e99b6-942d-4937-a416-be99f648f54b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7a2e99b6-942d-4937-a416-be99f648f54b .shogun-image-content {
  
    justify-content: center;
  
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image {
  box-sizing: border-box;
}



.s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7a2e99b6-942d-4937-a416-be99f648f54b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container {
      position: relative;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a2e99b6-942d-4937-a416-be99f648f54b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  margin: 0 !important;
  overflow: visible;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add background color handling */
  
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
  box-sizing: border-box;
}



.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
      position: relative;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  margin: 0 !important;
  overflow: visible;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add background color handling */
  
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
  box-sizing: border-box;
}



.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
      position: relative;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  margin: 0 !important;
  overflow: visible;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add background color handling */
  
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
  box-sizing: border-box;
}



.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
      position: relative;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  margin: 0 !important;
  overflow: visible;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add background color handling */
  
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
  box-sizing: border-box;
}



.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
      position: relative;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  margin: 0 !important;
  overflow: visible;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add background color handling */
  
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d .shogun-image-content {
  
    justify-content: center;
  
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image {
  box-sizing: border-box;
}



.s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container {
      position: relative;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-179b1355-f10a-4b91-a4f8-e17fe94ccd2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
  box-sizing: border-box;
}



.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
      position: relative;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
  box-sizing: border-box;
}



.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
      position: relative;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
  box-sizing: border-box;
}



.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
      position: relative;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
  box-sizing: border-box;
}



.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
      position: relative;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image {
  box-sizing: border-box;
}



.s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container {
      position: relative;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-993fe7dd-3dcb-443a-97d1-39d9c7aed8d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-768f7482-2b53-49de-82c7-1a98b467013f {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-768f7482-2b53-49de-82c7-1a98b467013f .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-c1eb74c2-34c1-4191-9db2-f634ed744d66 {
  margin-bottom: 10px;
}

#s-b13d4982-1dbf-4c4b-946f-5667bc59a77c {
  margin-bottom: 10px;
}

#s-de85026b-10ba-4601-b859-54271058b91e {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-de85026b-10ba-4601-b859-54271058b91e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-de85026b-10ba-4601-b859-54271058b91e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-de85026b-10ba-4601-b859-54271058b91e-root {
    text-align: left;
  }


#s-de85026b-10ba-4601-b859-54271058b91e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-de85026b-10ba-4601-b859-54271058b91e-root {
    text-align: left;
  }


#s-de85026b-10ba-4601-b859-54271058b91e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de85026b-10ba-4601-b859-54271058b91e-root {
    text-align: left;
  }


#s-de85026b-10ba-4601-b859-54271058b91e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de85026b-10ba-4601-b859-54271058b91e-root {
    text-align: left;
  }


#s-de85026b-10ba-4601-b859-54271058b91e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-de85026b-10ba-4601-b859-54271058b91e-root {
    text-align: left;
  }


#s-de85026b-10ba-4601-b859-54271058b91e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-f134202b-d941-4630-baf5-d29741cafa64 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f134202b-d941-4630-baf5-d29741cafa64"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-845190b7-bcfe-4f45-9b81-535c30821c95 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-845190b7-bcfe-4f45-9b81-535c30821c95 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-845190b7-bcfe-4f45-9b81-535c30821c95 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-845190b7-bcfe-4f45-9b81-535c30821c95 .shg-sld-nav-button.shg-sld-left,
#s-845190b7-bcfe-4f45-9b81-535c30821c95 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
  box-sizing: border-box;
}



.s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-699aedad-edc3-4957-9e45-a47879ce71f6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
      position: relative;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
  box-sizing: border-box;
}



.s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-699aedad-edc3-4957-9e45-a47879ce71f6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
      position: relative;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
  box-sizing: border-box;
}



.s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-699aedad-edc3-4957-9e45-a47879ce71f6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
      position: relative;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
  box-sizing: border-box;
}



.s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-699aedad-edc3-4957-9e45-a47879ce71f6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
      position: relative;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  margin: 0 !important;
  overflow: visible;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-699aedad-edc3-4957-9e45-a47879ce71f6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add background color handling */
  
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-699aedad-edc3-4957-9e45-a47879ce71f6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-699aedad-edc3-4957-9e45-a47879ce71f6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image {
  box-sizing: border-box;
}



.s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-699aedad-edc3-4957-9e45-a47879ce71f6 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container {
      position: relative;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-699aedad-edc3-4957-9e45-a47879ce71f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  text-align: center;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  margin: 0 !important;
  overflow: visible;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add background color handling */
  
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
    
    
    
    
  }


.s-15da373b-ee02-42b9-814f-f66b1c4f3792 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
  box-sizing: border-box;
}



.s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  
}


@media (min-width: 1200px){#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  margin: 0 !important;
  overflow: visible;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add background color handling */
  
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
    
    
    
    
  }


.s-15da373b-ee02-42b9-814f-f66b1c4f3792 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
  box-sizing: border-box;
}



.s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  margin: 0 !important;
  overflow: visible;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add background color handling */
  
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
    
    
    
    
  }


.s-15da373b-ee02-42b9-814f-f66b1c4f3792 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
  box-sizing: border-box;
}



.s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  margin: 0 !important;
  overflow: visible;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add background color handling */
  
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
    
    
    
    
  }


.s-15da373b-ee02-42b9-814f-f66b1c4f3792 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
  box-sizing: border-box;
}



.s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  
}


}@media (max-width: 767px){#s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  margin: 0 !important;
  overflow: visible;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-15da373b-ee02-42b9-814f-f66b1c4f3792 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add background color handling */
  
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
    
    
    
    
  }


.s-15da373b-ee02-42b9-814f-f66b1c4f3792 .shogun-image-content {
  
    justify-content: center;
  
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15da373b-ee02-42b9-814f-f66b1c4f3792.shogun-image {
  box-sizing: border-box;
}



.s-15da373b-ee02-42b9-814f-f66b1c4f3792 img.shogun-image {
  
}


}
#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  text-align: center;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  margin: 0 !important;
  overflow: visible;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add background color handling */
  
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
    
    
    
    
  }


.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 .shogun-image-content {
  
    justify-content: center;
  
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
  box-sizing: border-box;
}



.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  
}


@media (min-width: 1200px){#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  margin: 0 !important;
  overflow: visible;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add background color handling */
  
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
    
    
    
    
  }


.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 .shogun-image-content {
  
    justify-content: center;
  
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
  box-sizing: border-box;
}



.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  margin: 0 !important;
  overflow: visible;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add background color handling */
  
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
    
    
    
    
  }


.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 .shogun-image-content {
  
    justify-content: center;
  
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
  box-sizing: border-box;
}



.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  margin: 0 !important;
  overflow: visible;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add background color handling */
  
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
    
    
    
    
  }


.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 .shogun-image-content {
  
    justify-content: center;
  
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
  box-sizing: border-box;
}



.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  
}


}@media (max-width: 767px){#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  margin: 0 !important;
  overflow: visible;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-31bfc461-3da9-40ea-96d9-630afc9c3f43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add background color handling */
  
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
    
    
    
    
  }


.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 .shogun-image-content {
  
    justify-content: center;
  
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31bfc461-3da9-40ea-96d9-630afc9c3f43.shogun-image {
  box-sizing: border-box;
}



.s-31bfc461-3da9-40ea-96d9-630afc9c3f43 img.shogun-image {
  
}


}
#s-1064867b-bb64-427d-84af-c2f638217794 {
  text-align: center;
}

#s-1064867b-bb64-427d-84af-c2f638217794 {
  margin: 0 !important;
  overflow: visible;
}

#s-1064867b-bb64-427d-84af-c2f638217794-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add background color handling */
  
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
    
    
    
    
  }


.s-1064867b-bb64-427d-84af-c2f638217794 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1064867b-bb64-427d-84af-c2f638217794.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
  box-sizing: border-box;
}



.s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  
}


@media (min-width: 1200px){#s-1064867b-bb64-427d-84af-c2f638217794 {
  margin: 0 !important;
  overflow: visible;
}

#s-1064867b-bb64-427d-84af-c2f638217794-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add background color handling */
  
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
    
    
    
    
  }


.s-1064867b-bb64-427d-84af-c2f638217794 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1064867b-bb64-427d-84af-c2f638217794.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
  box-sizing: border-box;
}



.s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-1064867b-bb64-427d-84af-c2f638217794 {
  margin: 0 !important;
  overflow: visible;
}

#s-1064867b-bb64-427d-84af-c2f638217794-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add background color handling */
  
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
    
    
    
    
  }


.s-1064867b-bb64-427d-84af-c2f638217794 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1064867b-bb64-427d-84af-c2f638217794.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
  box-sizing: border-box;
}



.s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-1064867b-bb64-427d-84af-c2f638217794 {
  margin: 0 !important;
  overflow: visible;
}

#s-1064867b-bb64-427d-84af-c2f638217794-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add background color handling */
  
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
    
    
    
    
  }


.s-1064867b-bb64-427d-84af-c2f638217794 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1064867b-bb64-427d-84af-c2f638217794.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
  box-sizing: border-box;
}



.s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  
}


}@media (max-width: 767px){#s-1064867b-bb64-427d-84af-c2f638217794 {
  margin: 0 !important;
  overflow: visible;
}

#s-1064867b-bb64-427d-84af-c2f638217794-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1064867b-bb64-427d-84af-c2f638217794 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add background color handling */
  
}

#s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
    
    
    
    
  }


.s-1064867b-bb64-427d-84af-c2f638217794 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1064867b-bb64-427d-84af-c2f638217794.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1064867b-bb64-427d-84af-c2f638217794.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1064867b-bb64-427d-84af-c2f638217794.shogun-image {
  box-sizing: border-box;
}



.s-1064867b-bb64-427d-84af-c2f638217794 img.shogun-image {
  
}


}
#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
  box-sizing: border-box;
}



.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
      position: relative;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
  box-sizing: border-box;
}



.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
      position: relative;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
  box-sizing: border-box;
}



.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
      position: relative;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
  box-sizing: border-box;
}



.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
      position: relative;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  margin: 0 !important;
  overflow: visible;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add background color handling */
  
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image {
  box-sizing: border-box;
}



.s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container {
      position: relative;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5fd6e74-ff96-48b9-8a0c-92e7f8679dc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
  box-sizing: border-box;
}



.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
      position: relative;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
  box-sizing: border-box;
}



.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
      position: relative;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
  box-sizing: border-box;
}



.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
      position: relative;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
  box-sizing: border-box;
}



.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
      position: relative;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image {
  box-sizing: border-box;
}



.s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container {
      position: relative;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0a54ef47-a071-479e-9a9f-8bba2e83e109 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
  box-sizing: border-box;
}



.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
      position: relative;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
  box-sizing: border-box;
}



.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
      position: relative;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
  box-sizing: border-box;
}



.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
      position: relative;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
  box-sizing: border-box;
}



.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
      position: relative;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image {
  box-sizing: border-box;
}



.s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container {
      position: relative;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0494bc40-5ccb-4812-8876-4b01493f9ef5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-67a0b26e-9b8c-4b57-93a2-09cbf81ffef1 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-67a0b26e-9b8c-4b57-93a2-09cbf81ffef1 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-7a04a0df-b716-4aa2-b417-a502ef3a4bd5 {
  margin-bottom: 10px;
}

#s-b331bccb-2865-49c4-bedb-adfa743be612 {
  margin-bottom: 10px;
}

#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd-root {
    text-align: left;
  }


#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd-root {
    text-align: left;
  }


#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd-root {
    text-align: left;
  }


#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd-root {
    text-align: left;
  }


#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd-root {
    text-align: left;
  }


#s-363697d4-0a54-4aa7-8f9a-65a0ee55dfcd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 30px;
margin-right: 0%;
text-align: left;
}


  #s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(144, 144, 144, 1);
  }
  #s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(226, 226, 226, 1);
    border: 1px solid rgba(144, 144, 144, 1);
  }
#s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 13px;
}

#s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(226, 226, 226, 1);
}

#s-cb0278db-8c8c-4e4c-8230-9cdc80c0b3ae .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(144, 144, 144, 1);
}

#s-9b69848f-6921-4b19-9265-f6af2b162cf4 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9b69848f-6921-4b19-9265-f6af2b162cf4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-83d8efef-3379-49a1-b5cd-855de591260a {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-83d8efef-3379-49a1-b5cd-855de591260a {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-83d8efef-3379-49a1-b5cd-855de591260a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-83d8efef-3379-49a1-b5cd-855de591260a .shg-sld-nav-button.shg-sld-left,
#s-83d8efef-3379-49a1-b5cd-855de591260a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  margin: 0 !important;
  overflow: visible;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add background color handling */
  
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
  box-sizing: border-box;
}



.s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df92ca80-822c-4062-afd9-615dd3b64089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
      position: relative;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  margin: 0 !important;
  overflow: visible;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add background color handling */
  
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
  box-sizing: border-box;
}



.s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df92ca80-822c-4062-afd9-615dd3b64089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
      position: relative;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  margin: 0 !important;
  overflow: visible;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add background color handling */
  
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
  box-sizing: border-box;
}



.s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df92ca80-822c-4062-afd9-615dd3b64089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
      position: relative;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  margin: 0 !important;
  overflow: visible;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add background color handling */
  
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
  box-sizing: border-box;
}



.s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df92ca80-822c-4062-afd9-615dd3b64089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
      position: relative;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-df92ca80-822c-4062-afd9-615dd3b64089 {
  margin: 0 !important;
  overflow: visible;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-df92ca80-822c-4062-afd9-615dd3b64089 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add background color handling */
  
}

#s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-df92ca80-822c-4062-afd9-615dd3b64089 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-df92ca80-822c-4062-afd9-615dd3b64089 .shogun-image-content {
  
    justify-content: center;
  
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image {
  box-sizing: border-box;
}



.s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-df92ca80-822c-4062-afd9-615dd3b64089 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container {
      position: relative;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df92ca80-822c-4062-afd9-615dd3b64089 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  text-align: center;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  margin: 0 !important;
  overflow: visible;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add background color handling */
  
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
    
    
    
    
  }


.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
  box-sizing: border-box;
}



.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  
}


@media (min-width: 1200px){#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  margin: 0 !important;
  overflow: visible;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add background color handling */
  
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
    
    
    
    
  }


.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
  box-sizing: border-box;
}



.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  margin: 0 !important;
  overflow: visible;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add background color handling */
  
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
    
    
    
    
  }


.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
  box-sizing: border-box;
}



.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  margin: 0 !important;
  overflow: visible;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add background color handling */
  
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
    
    
    
    
  }


.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
  box-sizing: border-box;
}



.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  
}


}@media (max-width: 767px){#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  margin: 0 !important;
  overflow: visible;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add background color handling */
  
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
    
    
    
    
  }


.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b .shogun-image-content {
  
    justify-content: center;
  
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b.shogun-image {
  box-sizing: border-box;
}



.s-e7da4d00-c99d-4206-b9fc-b9cb4a74d17b img.shogun-image {
  
}


}
#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  text-align: center;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  margin: 0 !important;
  overflow: visible;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add background color handling */
  
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
    
    
    
    
  }


.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f .shogun-image-content {
  
    justify-content: center;
  
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
  box-sizing: border-box;
}



.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  
}


@media (min-width: 1200px){#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  margin: 0 !important;
  overflow: visible;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add background color handling */
  
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
    
    
    
    
  }


.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f .shogun-image-content {
  
    justify-content: center;
  
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
  box-sizing: border-box;
}



.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  margin: 0 !important;
  overflow: visible;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add background color handling */
  
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
    
    
    
    
  }


.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f .shogun-image-content {
  
    justify-content: center;
  
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
  box-sizing: border-box;
}



.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  margin: 0 !important;
  overflow: visible;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add background color handling */
  
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
    
    
    
    
  }


.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f .shogun-image-content {
  
    justify-content: center;
  
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
  box-sizing: border-box;
}



.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  
}


}@media (max-width: 767px){#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  margin: 0 !important;
  overflow: visible;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add background color handling */
  
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
    
    
    
    
  }


.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f .shogun-image-content {
  
    justify-content: center;
  
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f.shogun-image {
  box-sizing: border-box;
}



.s-644b3a2a-bdbd-4ed6-a480-eb03aa31542f img.shogun-image {
  
}


}
#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  text-align: center;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  margin: 0 !important;
  overflow: visible;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add background color handling */
  
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
    
    
    
    
  }


.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
  box-sizing: border-box;
}



.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  
}


@media (min-width: 1200px){#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  margin: 0 !important;
  overflow: visible;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add background color handling */
  
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
    
    
    
    
  }


.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
  box-sizing: border-box;
}



.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  margin: 0 !important;
  overflow: visible;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add background color handling */
  
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
    
    
    
    
  }


.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
  box-sizing: border-box;
}



.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  margin: 0 !important;
  overflow: visible;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add background color handling */
  
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
    
    
    
    
  }


.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
  box-sizing: border-box;
}



.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  
}


}@media (max-width: 767px){#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  margin: 0 !important;
  overflow: visible;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add background color handling */
  
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
    
    
    
    
  }


.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d .shogun-image-content {
  
    justify-content: center;
  
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d.shogun-image {
  box-sizing: border-box;
}



.s-b64f9c1f-7159-4de6-9448-a6c3ef4f758d img.shogun-image {
  
}


}
#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  margin: 0 !important;
  overflow: visible;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add background color handling */
  
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
  box-sizing: border-box;
}



.s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
      position: relative;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  margin: 0 !important;
  overflow: visible;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add background color handling */
  
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
  box-sizing: border-box;
}



.s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
      position: relative;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  margin: 0 !important;
  overflow: visible;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add background color handling */
  
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
  box-sizing: border-box;
}



.s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
      position: relative;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  margin: 0 !important;
  overflow: visible;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add background color handling */
  
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
  box-sizing: border-box;
}



.s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
      position: relative;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  margin: 0 !important;
  overflow: visible;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add background color handling */
  
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-1479e62b-2d59-4737-bb71-babbbf3b7784 .shogun-image-content {
  
    justify-content: center;
  
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image {
  box-sizing: border-box;
}



.s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container {
      position: relative;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1479e62b-2d59-4737-bb71-babbbf3b7784 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
  box-sizing: border-box;
}



.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
      position: relative;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
  box-sizing: border-box;
}



.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
      position: relative;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
  box-sizing: border-box;
}



.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
      position: relative;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
  box-sizing: border-box;
}



.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
      position: relative;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  margin: 0 !important;
  overflow: visible;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add background color handling */
  
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image {
  box-sizing: border-box;
}



.s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container {
      position: relative;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-838e8442-dc5b-4301-a0d7-8391f1f839e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
  box-sizing: border-box;
}



.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
      position: relative;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
  box-sizing: border-box;
}



.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
      position: relative;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
  box-sizing: border-box;
}



.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
      position: relative;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
  box-sizing: border-box;
}



.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
      position: relative;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  margin: 0 !important;
  overflow: visible;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add background color handling */
  
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image {
  box-sizing: border-box;
}



.s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container {
      position: relative;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c701ed2e-0708-4be4-ad6e-e264b46282c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-9cf3211f-1117-4175-a019-35cf20129d72 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9cf3211f-1117-4175-a019-35cf20129d72 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-7d910771-c730-4ed5-bb66-c269b8aacc26 {
  margin-bottom: 10px;
}

#s-38f4327e-9699-4cf8-b72d-c3ec7d4a7c36 {
  margin-bottom: 10px;
}

#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645-root {
    text-align: left;
  }


#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645-root {
    text-align: left;
  }


#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645-root {
    text-align: left;
  }


#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645-root {
    text-align: left;
  }


#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645-root {
    text-align: left;
  }


#s-1456e1e4-cc5d-4b0c-a1f5-41aaf67ad645.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-65e02401-abe5-4b18-93b9-78230e1c6310 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-65e02401-abe5-4b18-93b9-78230e1c6310"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-23036680-0935-4a9e-8c05-f481efc181e5 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-23036680-0935-4a9e-8c05-f481efc181e5 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-23036680-0935-4a9e-8c05-f481efc181e5 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-23036680-0935-4a9e-8c05-f481efc181e5 .shg-sld-nav-button.shg-sld-left,
#s-23036680-0935-4a9e-8c05-f481efc181e5 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
  box-sizing: border-box;
}



.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
      position: relative;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
  box-sizing: border-box;
}



.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
      position: relative;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
  box-sizing: border-box;
}



.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
      position: relative;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
  box-sizing: border-box;
}



.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
      position: relative;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  margin: 0 !important;
  overflow: visible;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add background color handling */
  
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image {
  box-sizing: border-box;
}



.s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container {
      position: relative;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f728e90c-2dd8-40ac-b510-b60f1bfecac7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  text-align: center;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  margin: 0 !important;
  overflow: visible;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add background color handling */
  
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
    
    
    
    
  }


.s-a8dbca17-dffa-4022-a235-e9813de36782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
  box-sizing: border-box;
}



.s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  
}


@media (min-width: 1200px){#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  margin: 0 !important;
  overflow: visible;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add background color handling */
  
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
    
    
    
    
  }


.s-a8dbca17-dffa-4022-a235-e9813de36782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
  box-sizing: border-box;
}



.s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  margin: 0 !important;
  overflow: visible;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add background color handling */
  
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
    
    
    
    
  }


.s-a8dbca17-dffa-4022-a235-e9813de36782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
  box-sizing: border-box;
}



.s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  margin: 0 !important;
  overflow: visible;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add background color handling */
  
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
    
    
    
    
  }


.s-a8dbca17-dffa-4022-a235-e9813de36782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
  box-sizing: border-box;
}



.s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  
}


}@media (max-width: 767px){#s-a8dbca17-dffa-4022-a235-e9813de36782 {
  margin: 0 !important;
  overflow: visible;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a8dbca17-dffa-4022-a235-e9813de36782 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add background color handling */
  
}

#s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
    
    
    
    
  }


.s-a8dbca17-dffa-4022-a235-e9813de36782 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8dbca17-dffa-4022-a235-e9813de36782.shogun-image {
  box-sizing: border-box;
}



.s-a8dbca17-dffa-4022-a235-e9813de36782 img.shogun-image {
  
}


}
#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  text-align: center;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
    
    
    
    
  }


.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
  box-sizing: border-box;
}



.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  
}


@media (min-width: 1200px){#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
    
    
    
    
  }


.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
  box-sizing: border-box;
}



.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
    
    
    
    
  }


.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
  box-sizing: border-box;
}



.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
    
    
    
    
  }


.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
  box-sizing: border-box;
}



.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  
}


}@media (max-width: 767px){#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  margin: 0 !important;
  overflow: visible;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add background color handling */
  
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
    
    
    
    
  }


.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8068f2d9-7738-4362-bf56-cc9ac664d5a4.shogun-image {
  box-sizing: border-box;
}



.s-8068f2d9-7738-4362-bf56-cc9ac664d5a4 img.shogun-image {
  
}


}
#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  text-align: center;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
    
    
    
    
  }


.s-69ae99bd-b4c2-4506-8039-6174b05604f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
  box-sizing: border-box;
}



.s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  
}


@media (min-width: 1200px){#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
    
    
    
    
  }


.s-69ae99bd-b4c2-4506-8039-6174b05604f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
  box-sizing: border-box;
}



.s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
    
    
    
    
  }


.s-69ae99bd-b4c2-4506-8039-6174b05604f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
  box-sizing: border-box;
}



.s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
    
    
    
    
  }


.s-69ae99bd-b4c2-4506-8039-6174b05604f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
  box-sizing: border-box;
}



.s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  
}


}@media (max-width: 767px){#s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  margin: 0 !important;
  overflow: visible;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-69ae99bd-b4c2-4506-8039-6174b05604f1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add background color handling */
  
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
    
    
    
    
  }


.s-69ae99bd-b4c2-4506-8039-6174b05604f1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69ae99bd-b4c2-4506-8039-6174b05604f1.shogun-image {
  box-sizing: border-box;
}



.s-69ae99bd-b4c2-4506-8039-6174b05604f1 img.shogun-image {
  
}


}
#s-8a99896d-598f-4050-875e-e80058d34e0c {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c {
  margin: 0 !important;
  overflow: visible;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add background color handling */
  
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
  box-sizing: border-box;
}



.s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a99896d-598f-4050-875e-e80058d34e0c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
      position: relative;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-8a99896d-598f-4050-875e-e80058d34e0c {
  margin: 0 !important;
  overflow: visible;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add background color handling */
  
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
  box-sizing: border-box;
}



.s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a99896d-598f-4050-875e-e80058d34e0c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
      position: relative;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-8a99896d-598f-4050-875e-e80058d34e0c {
  margin: 0 !important;
  overflow: visible;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add background color handling */
  
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
  box-sizing: border-box;
}



.s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a99896d-598f-4050-875e-e80058d34e0c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
      position: relative;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-8a99896d-598f-4050-875e-e80058d34e0c {
  margin: 0 !important;
  overflow: visible;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add background color handling */
  
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
  box-sizing: border-box;
}



.s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a99896d-598f-4050-875e-e80058d34e0c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
      position: relative;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-8a99896d-598f-4050-875e-e80058d34e0c {
  margin: 0 !important;
  overflow: visible;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8a99896d-598f-4050-875e-e80058d34e0c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add background color handling */
  
}

#s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a99896d-598f-4050-875e-e80058d34e0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-8a99896d-598f-4050-875e-e80058d34e0c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image {
  box-sizing: border-box;
}



.s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-8a99896d-598f-4050-875e-e80058d34e0c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container {
      position: relative;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a99896d-598f-4050-875e-e80058d34e0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  margin: 0 !important;
  overflow: visible;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add background color handling */
  
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
  box-sizing: border-box;
}



.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
      position: relative;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  margin: 0 !important;
  overflow: visible;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add background color handling */
  
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
  box-sizing: border-box;
}



.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
      position: relative;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  margin: 0 !important;
  overflow: visible;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add background color handling */
  
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
  box-sizing: border-box;
}



.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
      position: relative;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  margin: 0 !important;
  overflow: visible;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add background color handling */
  
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
  box-sizing: border-box;
}



.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
      position: relative;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  margin: 0 !important;
  overflow: visible;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add background color handling */
  
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd .shogun-image-content {
  
    justify-content: center;
  
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image {
  box-sizing: border-box;
}



.s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container {
      position: relative;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9ef70976-918c-41aa-ad15-fc8a22c89fcd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  margin: 0 !important;
  overflow: visible;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add background color handling */
  
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-content {
  
    justify-content: center;
  
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
  box-sizing: border-box;
}



.s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
      position: relative;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  margin: 0 !important;
  overflow: visible;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add background color handling */
  
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-content {
  
    justify-content: center;
  
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
  box-sizing: border-box;
}



.s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
      position: relative;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  margin: 0 !important;
  overflow: visible;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add background color handling */
  
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-content {
  
    justify-content: center;
  
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
  box-sizing: border-box;
}



.s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
      position: relative;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  margin: 0 !important;
  overflow: visible;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add background color handling */
  
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-content {
  
    justify-content: center;
  
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
  box-sizing: border-box;
}



.s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
      position: relative;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  margin: 0 !important;
  overflow: visible;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add background color handling */
  
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-7995901e-17e2-48f3-9a05-302cb6f5a9db .shogun-image-content {
  
    justify-content: center;
  
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image {
  box-sizing: border-box;
}



.s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container {
      position: relative;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7995901e-17e2-48f3-9a05-302cb6f5a9db img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-05380c86-e635-4fee-b380-084d79bd636f {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-05380c86-e635-4fee-b380-084d79bd636f .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-6d0f510f-35ad-4491-af00-3583af793f06 {
  margin-bottom: 10px;
}

#s-6d89e035-50bc-4b9e-9c2f-79d8d8f4e34d {
  margin-bottom: 10px;
}

#s-48554a18-8678-4f80-9c3f-10446acd2917 {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-48554a18-8678-4f80-9c3f-10446acd2917:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48554a18-8678-4f80-9c3f-10446acd2917:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-48554a18-8678-4f80-9c3f-10446acd2917-root {
    text-align: left;
  }


#s-48554a18-8678-4f80-9c3f-10446acd2917.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-48554a18-8678-4f80-9c3f-10446acd2917-root {
    text-align: left;
  }


#s-48554a18-8678-4f80-9c3f-10446acd2917.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-48554a18-8678-4f80-9c3f-10446acd2917-root {
    text-align: left;
  }


#s-48554a18-8678-4f80-9c3f-10446acd2917.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-48554a18-8678-4f80-9c3f-10446acd2917-root {
    text-align: left;
  }


#s-48554a18-8678-4f80-9c3f-10446acd2917.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-48554a18-8678-4f80-9c3f-10446acd2917-root {
    text-align: left;
  }


#s-48554a18-8678-4f80-9c3f-10446acd2917.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-22adbb52-46c7-4d17-8eea-07901344271e {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-22adbb52-46c7-4d17-8eea-07901344271e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-c0236ead-f8dc-465f-9af6-1d0adfb1577c {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-c0236ead-f8dc-465f-9af6-1d0adfb1577c {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-c0236ead-f8dc-465f-9af6-1d0adfb1577c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c0236ead-f8dc-465f-9af6-1d0adfb1577c .shg-sld-nav-button.shg-sld-left,
#s-c0236ead-f8dc-465f-9af6-1d0adfb1577c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  margin: 0 !important;
  overflow: visible;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add background color handling */
  
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
  box-sizing: border-box;
}



.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
      position: relative;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  margin: 0 !important;
  overflow: visible;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add background color handling */
  
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
  box-sizing: border-box;
}



.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
      position: relative;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  margin: 0 !important;
  overflow: visible;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add background color handling */
  
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
  box-sizing: border-box;
}



.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
      position: relative;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  margin: 0 !important;
  overflow: visible;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add background color handling */
  
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
  box-sizing: border-box;
}



.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
      position: relative;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  margin: 0 !important;
  overflow: visible;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add background color handling */
  
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae .shogun-image-content {
  
    justify-content: center;
  
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image {
  box-sizing: border-box;
}



.s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container {
      position: relative;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bb7ce626-2a5d-4b6e-9e38-7830fe0622ae img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  text-align: center;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  margin: 0 !important;
  overflow: visible;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add background color handling */
  
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
    
    
    
    
  }


.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d .shogun-image-content {
  
    justify-content: center;
  
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
  box-sizing: border-box;
}



.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  
}


@media (min-width: 1200px){#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  margin: 0 !important;
  overflow: visible;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add background color handling */
  
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
    
    
    
    
  }


.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d .shogun-image-content {
  
    justify-content: center;
  
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
  box-sizing: border-box;
}



.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  margin: 0 !important;
  overflow: visible;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add background color handling */
  
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
    
    
    
    
  }


.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d .shogun-image-content {
  
    justify-content: center;
  
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
  box-sizing: border-box;
}



.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  margin: 0 !important;
  overflow: visible;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add background color handling */
  
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
    
    
    
    
  }


.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d .shogun-image-content {
  
    justify-content: center;
  
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
  box-sizing: border-box;
}



.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  
}


}@media (max-width: 767px){#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  margin: 0 !important;
  overflow: visible;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add background color handling */
  
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
    
    
    
    
  }


.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d .shogun-image-content {
  
    justify-content: center;
  
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d.shogun-image {
  box-sizing: border-box;
}



.s-4747f3b6-373f-4e65-9fe2-4bfbcfd3a68d img.shogun-image {
  
}


}
#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  text-align: center;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  margin: 0 !important;
  overflow: visible;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add background color handling */
  
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
    
    
    
    
  }


.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
  box-sizing: border-box;
}



.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  
}


@media (min-width: 1200px){#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  margin: 0 !important;
  overflow: visible;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add background color handling */
  
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
    
    
    
    
  }


.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
  box-sizing: border-box;
}



.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  margin: 0 !important;
  overflow: visible;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add background color handling */
  
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
    
    
    
    
  }


.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
  box-sizing: border-box;
}



.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  margin: 0 !important;
  overflow: visible;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add background color handling */
  
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
    
    
    
    
  }


.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
  box-sizing: border-box;
}



.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  
}


}@media (max-width: 767px){#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  margin: 0 !important;
  overflow: visible;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add background color handling */
  
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
    
    
    
    
  }


.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 .shogun-image-content {
  
    justify-content: center;
  
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db73d84a-7a55-4d0a-b04f-1fcbd2539277.shogun-image {
  box-sizing: border-box;
}



.s-db73d84a-7a55-4d0a-b04f-1fcbd2539277 img.shogun-image {
  
}


}
#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  text-align: center;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
    
    
    
    
  }


.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
  box-sizing: border-box;
}



.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  
}


@media (min-width: 1200px){#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
    
    
    
    
  }


.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
  box-sizing: border-box;
}



.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
    
    
    
    
  }


.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
  box-sizing: border-box;
}



.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
    
    
    
    
  }


.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
  box-sizing: border-box;
}



.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  
}


}@media (max-width: 767px){#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
    
    
    
    
  }


.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d158f2a-82ce-4f07-b1d9-89f9248c1853.shogun-image {
  box-sizing: border-box;
}



.s-9d158f2a-82ce-4f07-b1d9-89f9248c1853 img.shogun-image {
  
}


}
#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
  box-sizing: border-box;
}



.s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
      position: relative;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
  box-sizing: border-box;
}



.s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
      position: relative;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
  box-sizing: border-box;
}



.s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
      position: relative;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
  box-sizing: border-box;
}



.s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
      position: relative;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  margin: 0 !important;
  overflow: visible;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add background color handling */
  
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-2af910b1-20aa-45d3-87e8-58e033f88e6b .shogun-image-content {
  
    justify-content: center;
  
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image {
  box-sizing: border-box;
}



.s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container {
      position: relative;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2af910b1-20aa-45d3-87e8-58e033f88e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
  box-sizing: border-box;
}



.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
      position: relative;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
  box-sizing: border-box;
}



.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
      position: relative;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
  box-sizing: border-box;
}



.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
      position: relative;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
  box-sizing: border-box;
}



.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
      position: relative;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  margin: 0 !important;
  overflow: visible;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add background color handling */
  
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image {
  box-sizing: border-box;
}



.s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container {
      position: relative;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9e1444e9-d9d6-439f-b93a-4219b83bccd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  max-width: 1500px;
aspect-ratio: 1500/1800;
text-align: center;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  margin: 0 !important;
  overflow: visible;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add background color handling */
  
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-content {
  
    justify-content: center;
  
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
  box-sizing: border-box;
}



.s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48c5a829-5b57-4612-9391-18d8ec236e9c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
      position: relative;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  margin: 0 !important;
  overflow: visible;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add background color handling */
  
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-content {
  
    justify-content: center;
  
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
  box-sizing: border-box;
}



.s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48c5a829-5b57-4612-9391-18d8ec236e9c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
      position: relative;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  margin: 0 !important;
  overflow: visible;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add background color handling */
  
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-content {
  
    justify-content: center;
  
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
  box-sizing: border-box;
}



.s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48c5a829-5b57-4612-9391-18d8ec236e9c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
      position: relative;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  margin: 0 !important;
  overflow: visible;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add background color handling */
  
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-content {
  
    justify-content: center;
  
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
  box-sizing: border-box;
}



.s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48c5a829-5b57-4612-9391-18d8ec236e9c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
      position: relative;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  margin: 0 !important;
  overflow: visible;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-48c5a829-5b57-4612-9391-18d8ec236e9c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add background color handling */
  
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }

    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-link {
      aspect-ratio: 1500/1800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-48c5a829-5b57-4612-9391-18d8ec236e9c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-48c5a829-5b57-4612-9391-18d8ec236e9c .shogun-image-content {
  
    justify-content: center;
  
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image {
  box-sizing: border-box;
}



.s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-48c5a829-5b57-4612-9391-18d8ec236e9c {
      --shg-aspect-ratio: calc(1500/1800); 
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container {
      position: relative;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-48c5a829-5b57-4612-9391-18d8ec236e9c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-f4d734f6-11a7-4072-9ca2-02c98d87ec41 {
  margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f4d734f6-11a7-4072-9ca2-02c98d87ec41 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-1344e287-5c7d-42ce-9348-15a080f77622 {
  margin-bottom: 10px;
}

#s-c236c8ab-4ec9-4037-8957-928297ea8bdd {
  margin-bottom: 10px;
}

#s-968c2f67-16be-4b9d-8f56-7c434db0c20b {
  padding-top: 4px;
padding-left: 40px;
padding-bottom: 4px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-968c2f67-16be-4b9d-8f56-7c434db0c20b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-968c2f67-16be-4b9d-8f56-7c434db0c20b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-968c2f67-16be-4b9d-8f56-7c434db0c20b-root {
    text-align: left;
  }


#s-968c2f67-16be-4b9d-8f56-7c434db0c20b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-968c2f67-16be-4b9d-8f56-7c434db0c20b-root {
    text-align: left;
  }


#s-968c2f67-16be-4b9d-8f56-7c434db0c20b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-968c2f67-16be-4b9d-8f56-7c434db0c20b-root {
    text-align: left;
  }


#s-968c2f67-16be-4b9d-8f56-7c434db0c20b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-968c2f67-16be-4b9d-8f56-7c434db0c20b-root {
    text-align: left;
  }


#s-968c2f67-16be-4b9d-8f56-7c434db0c20b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-968c2f67-16be-4b9d-8f56-7c434db0c20b-root {
    text-align: left;
  }


#s-968c2f67-16be-4b9d-8f56-7c434db0c20b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
max-width: 1500px;
aspect-ratio: 1500/753;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 15%;
  margin-right: 15%;
  
  margin-bottom: 50px;
}

.shg-image-content-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }

    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-link {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
  box-sizing: border-box;
}



.s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75604afc-bee8-4d71-9eda-d56439e379e0 {
      --shg-aspect-ratio: calc(1500/753); 
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
      position: relative;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

@media (min-width: 1200px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }

    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-link {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
  box-sizing: border-box;
}



.s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75604afc-bee8-4d71-9eda-d56439e379e0 {
      --shg-aspect-ratio: calc(1500/753); 
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
      position: relative;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }

    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-link {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
  box-sizing: border-box;
}



.s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75604afc-bee8-4d71-9eda-d56439e379e0 {
      --shg-aspect-ratio: calc(1500/753); 
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
      position: relative;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
}

.shg-image-content-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }

    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-link {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
  box-sizing: border-box;
}



.s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75604afc-bee8-4d71-9eda-d56439e379e0 {
      --shg-aspect-ratio: calc(1500/753); 
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
      position: relative;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}@media (max-width: 767px){#s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  margin: 0 !important;
  overflow: visible;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
}

.shg-image-content-margin-container-s-75604afc-bee8-4d71-9eda-d56439e379e0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add background color handling */
  
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }

    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-link {
      aspect-ratio: 1500/753;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-75604afc-bee8-4d71-9eda-d56439e379e0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1500px;
  }



  img.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
    
    
    
    max-height: 1500px;
  }


.s-75604afc-bee8-4d71-9eda-d56439e379e0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image {
  box-sizing: border-box;
}



.s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-75604afc-bee8-4d71-9eda-d56439e379e0 {
      --shg-aspect-ratio: calc(1500/753); 
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container {
      position: relative;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75604afc-bee8-4d71-9eda-d56439e379e0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1500px;
    }
  }

}
#s-19cbc035-913a-488e-874a-aa9727d5ca66 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-19cbc035-913a-488e-874a-aa9727d5ca66 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-19cbc035-913a-488e-874a-aa9727d5ca66 {
  margin-left: 15%;
margin-right: 15%;
}
}







#s-19cbc035-913a-488e-874a-aa9727d5ca66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-19cbc035-913a-488e-874a-aa9727d5ca66.shg-box.shg-c {
  justify-content: center;
}

#s-358312e5-adc0-4e98-af5c-3a66dd236df4 {
  margin-left: 0px;
margin-bottom: 80px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-358312e5-adc0-4e98-af5c-3a66dd236df4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-358312e5-adc0-4e98-af5c-3a66dd236df4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-358312e5-adc0-4e98-af5c-3a66dd236df4 {
  
}
}@media (max-width: 767px){#s-358312e5-adc0-4e98-af5c-3a66dd236df4 {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-358312e5-adc0-4e98-af5c-3a66dd236df4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 200px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 {
  
}
}@media (max-width: 767px){#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 {
  
}
}







#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-7cba5132-58c1-4ea7-8c34-5f8c257b7950.shg-box.shg-c {
  justify-content: center;
}

#s-b3dcdb43-4b21-4726-901e-cca13855da1d {
  padding-left: 7%;
padding-right: 7%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b3dcdb43-4b21-4726-901e-cca13855da1d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b3dcdb43-4b21-4726-901e-cca13855da1d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b3dcdb43-4b21-4726-901e-cca13855da1d {
  
}
}@media (max-width: 767px){#s-b3dcdb43-4b21-4726-901e-cca13855da1d {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
}







#s-b3dcdb43-4b21-4726-901e-cca13855da1d > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-b3dcdb43-4b21-4726-901e-cca13855da1d.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-b3dcdb43-4b21-4726-901e-cca13855da1d > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  display: block;
}#s-b3dcdb43-4b21-4726-901e-cca13855da1d.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-ad634561-415b-4f05-a418-35484a7ba574 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ad634561-415b-4f05-a418-35484a7ba574 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ad634561-415b-4f05-a418-35484a7ba574 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-ad634561-415b-4f05-a418-35484a7ba574 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  
  
  text-align: left;
}


}
#s-729da715-a683-40a8-a908-8848bbceeee0 {
  min-height: 20px;
max-width: 100px;
}








#s-729da715-a683-40a8-a908-8848bbceeee0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-729da715-a683-40a8-a908-8848bbceeee0.shg-box.shg-c {
  justify-content: center;
}

#s-8b777f3e-8038-42f8-888f-397fe7ea3d9d {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-8b777f3e-8038-42f8-888f-397fe7ea3d9d hr {
  border-top: 2px solid #ddd;
}

#s-ff872ea1-fbaa-40d1-8562-22915b7cad69 {
  min-height: 50px;
}








#s-ff872ea1-fbaa-40d1-8562-22915b7cad69 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff872ea1-fbaa-40d1-8562-22915b7cad69.shg-box.shg-c {
  justify-content: center;
}

#s-c99807be-bb92-4b8b-a79a-030290bd06e7 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c99807be-bb92-4b8b-a79a-030290bd06e7 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-c99807be-bb92-4b8b-a79a-030290bd06e7 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-c99807be-bb92-4b8b-a79a-030290bd06e7 .shogun-heading-component h2 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


}
#s-86e461cc-aacc-410c-a39b-f1b90d234508 {
  margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-86e461cc-aacc-410c-a39b-f1b90d234508"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-86e461cc-aacc-410c-a39b-f1b90d234508"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-86e461cc-aacc-410c-a39b-f1b90d234508"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-86e461cc-aacc-410c-a39b-f1b90d234508"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin-bottom: 0px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin: 0 !important;
  overflow: visible;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add background color handling */
  
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
  box-sizing: border-box;
}



.s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-657163e5-3f9a-463b-a936-dead0018c1ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
      position: relative;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin: 0 !important;
  overflow: visible;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add background color handling */
  
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
  box-sizing: border-box;
}



.s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-657163e5-3f9a-463b-a936-dead0018c1ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
      position: relative;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin: 0 !important;
  overflow: visible;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add background color handling */
  
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
  box-sizing: border-box;
}



.s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-657163e5-3f9a-463b-a936-dead0018c1ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
      position: relative;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin: 0 !important;
  overflow: visible;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add background color handling */
  
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
  box-sizing: border-box;
}



.s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-657163e5-3f9a-463b-a936-dead0018c1ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
      position: relative;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-657163e5-3f9a-463b-a936-dead0018c1ab {
  margin: 0 !important;
  overflow: visible;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-657163e5-3f9a-463b-a936-dead0018c1ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add background color handling */
  
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-657163e5-3f9a-463b-a936-dead0018c1ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-657163e5-3f9a-463b-a936-dead0018c1ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image {
  box-sizing: border-box;
}



.s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-657163e5-3f9a-463b-a936-dead0018c1ab {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container {
      position: relative;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-657163e5-3f9a-463b-a936-dead0018c1ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-f557fa81-b112-44b2-9e99-45ad5db85a2a {
  margin-bottom: 10px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f557fa81-b112-44b2-9e99-45ad5db85a2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f557fa81-b112-44b2-9e99-45ad5db85a2a.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5d661090-8720-4ded-b492-04d2fb830ef9 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5d661090-8720-4ded-b492-04d2fb830ef9 .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-648c0eaa-b503-46fe-b073-89b006c42d7d {
  margin-bottom: 20px;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin-bottom: 0px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin: 0 !important;
  overflow: visible;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add background color handling */
  
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
  box-sizing: border-box;
}



.s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
      position: relative;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin: 0 !important;
  overflow: visible;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add background color handling */
  
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
  box-sizing: border-box;
}



.s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
      position: relative;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin: 0 !important;
  overflow: visible;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add background color handling */
  
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
  box-sizing: border-box;
}



.s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
      position: relative;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin: 0 !important;
  overflow: visible;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add background color handling */
  
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
  box-sizing: border-box;
}



.s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
      position: relative;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  margin: 0 !important;
  overflow: visible;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add background color handling */
  
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-13b7f47a-d048-44a2-9cd5-28d48297a944 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image {
  box-sizing: border-box;
}



.s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container {
      position: relative;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13b7f47a-d048-44a2-9cd5-28d48297a944 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-1c31d4c6-d5ce-446f-bcfa-36b8bc9b2efc {
  margin-bottom: 10px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1c31d4c6-d5ce-446f-bcfa-36b8bc9b2efc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1c31d4c6-d5ce-446f-bcfa-36b8bc9b2efc.shg-box.shg-c {
  justify-content: flex-start;
}

#s-127b17cb-71d9-4cbc-a08f-dd87d6f6a23a {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-127b17cb-71d9-4cbc-a08f-dd87d6f6a23a .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-d54230ba-1cd6-4fcd-a35e-f07aa3b63559 {
  margin-bottom: 20px;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin-bottom: 0px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin: 0 !important;
  overflow: visible;
}

#s-58cd6a6d-2658-4413-b892-13593d076350-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add background color handling */
  
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-content {
  
    justify-content: center;
  
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
  box-sizing: border-box;
}



.s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-58cd6a6d-2658-4413-b892-13593d076350 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
      position: relative;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

@media (min-width: 1200px){#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin: 0 !important;
  overflow: visible;
}

#s-58cd6a6d-2658-4413-b892-13593d076350-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add background color handling */
  
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-content {
  
    justify-content: center;
  
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
  box-sizing: border-box;
}



.s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-58cd6a6d-2658-4413-b892-13593d076350 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
      position: relative;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin: 0 !important;
  overflow: visible;
}

#s-58cd6a6d-2658-4413-b892-13593d076350-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add background color handling */
  
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-content {
  
    justify-content: center;
  
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
  box-sizing: border-box;
}



.s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-58cd6a6d-2658-4413-b892-13593d076350 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
      position: relative;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin: 0 !important;
  overflow: visible;
}

#s-58cd6a6d-2658-4413-b892-13593d076350-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add background color handling */
  
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-content {
  
    justify-content: center;
  
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
  box-sizing: border-box;
}



.s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-58cd6a6d-2658-4413-b892-13593d076350 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
      position: relative;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}@media (max-width: 767px){#s-58cd6a6d-2658-4413-b892-13593d076350 {
  margin: 0 !important;
  overflow: visible;
}

#s-58cd6a6d-2658-4413-b892-13593d076350-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-58cd6a6d-2658-4413-b892-13593d076350 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add background color handling */
  
}

#s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd6a6d-2658-4413-b892-13593d076350 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 800px;
  }



  img.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
    
    
    
    max-height: 800px;
  }


.s-58cd6a6d-2658-4413-b892-13593d076350 .shogun-image-content {
  
    justify-content: center;
  
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image {
  box-sizing: border-box;
}



.s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-58cd6a6d-2658-4413-b892-13593d076350 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container {
      position: relative;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd6a6d-2658-4413-b892-13593d076350 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 800px;
    }
  }

}
#s-9a47f55a-7a25-49d6-91eb-4485d95f03d7 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9a47f55a-7a25-49d6-91eb-4485d95f03d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9a47f55a-7a25-49d6-91eb-4485d95f03d7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-af77bd0f-f88e-4737-a2e0-042b58d9be3e {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-af77bd0f-f88e-4737-a2e0-042b58d9be3e .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: "Rubik";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-4508c78a-1c52-45a0-a3c6-cdf15ea1d577 {
  margin-bottom: 20px;
}

#s-51453d85-e3fb-4552-8a06-25be63c8a7a2 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 80px;
margin-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-51453d85-e3fb-4552-8a06-25be63c8a7a2 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-51453d85-e3fb-4552-8a06-25be63c8a7a2 {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-51453d85-e3fb-4552-8a06-25be63c8a7a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-51453d85-e3fb-4552-8a06-25be63c8a7a2.shg-box.shg-c {
  justify-content: center;
}

#s-e9566b9e-a448-4dda-9332-b6618d98eb17 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-e9566b9e-a448-4dda-9332-b6618d98eb17 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e9566b9e-a448-4dda-9332-b6618d98eb17 {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-e9566b9e-a448-4dda-9332-b6618d98eb17 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-e8f97e9f-2b56-4f49-bbaf-3c7ea047b9ab {
  margin-top: 0px;
margin-bottom: 20px;
}

#s-4e67e468-9090-4005-bfd7-f7042d4dd262 {
  min-height: 50px;
}








#s-4e67e468-9090-4005-bfd7-f7042d4dd262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4e67e468-9090-4005-bfd7-f7042d4dd262.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-16aefa62-d892-41de-a030-1de600d10be0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-16aefa62-d892-41de-a030-1de600d10be0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-16aefa62-d892-41de-a030-1de600d10be0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-16aefa62-d892-41de-a030-1de600d10be0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

.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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  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-a687bc5b-ad49-4cde-878a-a91ed33713dd {
  border-style: solid;
margin-bottom: 5px;
border-color: rgba(234, 233, 236, 1);
border-radius: 20px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-a687bc5b-ad49-4cde-878a-a91ed33713dd {
  overflow: hidden;
  
  
      max-width: 800px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-a687bc5b-ad49-4cde-878a-a91ed33713dd img.shogun-image,
  #s-a687bc5b-ad49-4cde-878a-a91ed33713dd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a687bc5b-ad49-4cde-878a-a91ed33713dd {
    width: 100%;
    height: auto;
  }



  #s-a687bc5b-ad49-4cde-878a-a91ed33713dd img.shogun-image {
    

    
    
    
  }


#s-a687bc5b-ad49-4cde-878a-a91ed33713dd .shogun-image-content {
  
    justify-content: center;
  
}

#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c {
  
}
}@media (max-width: 767px){#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c {
  
}
}
#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c .shogun-heading-component h3 a {
  color: rgba(0, 0, 0, 1);
}

@media (min-width: 768px) and (max-width: 991px){#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


#s-1d5a8c35-2554-4a1c-9ef5-1f2bbf29185c .shogun-heading-component h3 a {
  color: rgba(0, 0, 0, 1);
}

}
#s-99b59eeb-988a-4296-a0ed-d08426e73b4d {
  border-style: solid;
margin-bottom: 5px;
border-color: rgba(234, 233, 236, 1);
border-radius: 20px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-99b59eeb-988a-4296-a0ed-d08426e73b4d {
  overflow: hidden;
  
  
      max-width: 800px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-99b59eeb-988a-4296-a0ed-d08426e73b4d img.shogun-image,
  #s-99b59eeb-988a-4296-a0ed-d08426e73b4d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-99b59eeb-988a-4296-a0ed-d08426e73b4d {
    width: 100%;
    height: auto;
  }



  #s-99b59eeb-988a-4296-a0ed-d08426e73b4d img.shogun-image {
    

    
    
    
  }


#s-99b59eeb-988a-4296-a0ed-d08426e73b4d .shogun-image-content {
  
    justify-content: center;
  
}

#s-9526396a-6530-4d8b-b733-0005b44c4b5b {
  margin-top: 0px;
margin-bottom: 20px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9526396a-6530-4d8b-b733-0005b44c4b5b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9526396a-6530-4d8b-b733-0005b44c4b5b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9526396a-6530-4d8b-b733-0005b44c4b5b {
  
}
}@media (max-width: 767px){#s-9526396a-6530-4d8b-b733-0005b44c4b5b {
  
}
}
#s-9526396a-6530-4d8b-b733-0005b44c4b5b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-9526396a-6530-4d8b-b733-0005b44c4b5b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-35db9310-d048-44e5-9005-43a5ec26fc78 {
  border-style: solid;
margin-bottom: 5px;
border-color: rgba(234, 233, 236, 1);
border-radius: 20px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-35db9310-d048-44e5-9005-43a5ec26fc78 {
  overflow: hidden;
  
  
      max-width: 800px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-35db9310-d048-44e5-9005-43a5ec26fc78 img.shogun-image,
  #s-35db9310-d048-44e5-9005-43a5ec26fc78 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-35db9310-d048-44e5-9005-43a5ec26fc78 {
    width: 100%;
    height: auto;
  }



  #s-35db9310-d048-44e5-9005-43a5ec26fc78 img.shogun-image {
    

    
    
    
  }


#s-35db9310-d048-44e5-9005-43a5ec26fc78 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e08f5210-abab-48df-923b-51ee2177be0f {
  margin-top: 0px;
margin-bottom: 20px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e08f5210-abab-48df-923b-51ee2177be0f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e08f5210-abab-48df-923b-51ee2177be0f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e08f5210-abab-48df-923b-51ee2177be0f {
  
}
}@media (max-width: 767px){#s-e08f5210-abab-48df-923b-51ee2177be0f {
  
}
}
#s-e08f5210-abab-48df-923b-51ee2177be0f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e08f5210-abab-48df-923b-51ee2177be0f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-8f39043d-1b71-416d-bce6-b054a7a35fb5 {
  border-style: solid;
margin-bottom: 5px;
border-color: rgba(234, 233, 236, 1);
border-radius: 20px;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}

#s-8f39043d-1b71-416d-bce6-b054a7a35fb5 {
  overflow: hidden;
  
  
      max-width: 800px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-8f39043d-1b71-416d-bce6-b054a7a35fb5 img.shogun-image,
  #s-8f39043d-1b71-416d-bce6-b054a7a35fb5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8f39043d-1b71-416d-bce6-b054a7a35fb5 {
    width: 100%;
    height: auto;
  }



  #s-8f39043d-1b71-416d-bce6-b054a7a35fb5 img.shogun-image {
    

    
    
    
  }


#s-8f39043d-1b71-416d-bce6-b054a7a35fb5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d5b2b5c6-418c-403d-bb82-6a994188950e {
  margin-top: 0px;
margin-bottom: 20px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-d5b2b5c6-418c-403d-bb82-6a994188950e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d5b2b5c6-418c-403d-bb82-6a994188950e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d5b2b5c6-418c-403d-bb82-6a994188950e {
  
}
}@media (max-width: 767px){#s-d5b2b5c6-418c-403d-bb82-6a994188950e {
  
}
}
#s-d5b2b5c6-418c-403d-bb82-6a994188950e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d5b2b5c6-418c-403d-bb82-6a994188950e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Red Hat Display";
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-80d7cb9e-0606-487b-90d3-c5b3a6991c6e {
  margin-left: 15%;
margin-bottom: 80px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-80d7cb9e-0606-487b-90d3-c5b3a6991c6e {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-80d7cb9e-0606-487b-90d3-c5b3a6991c6e {
  margin-left: 0%;
margin-right: 0%;
}
}
#s-f113c54d-b47d-48c0-bd2a-5d5d4520f1f1 {
  margin-left: 15%;
margin-right: 15%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f113c54d-b47d-48c0-bd2a-5d5d4520f1f1 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-f113c54d-b47d-48c0-bd2a-5d5d4520f1f1 {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-f113c54d-b47d-48c0-bd2a-5d5d4520f1f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f113c54d-b47d-48c0-bd2a-5d5d4520f1f1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 1200px){#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 {
  display: unset;
}
#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-content-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 { display: unset !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 {
  display: unset;
}
#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-content-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 { display: unset !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 {
  display: unset;
}
#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-content-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 { display: unset !important; }}@media (max-width: 767px){#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 {
  display: unset;
}
#s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6, #wrap-content-s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6 { display: unset !important; }}
@media (min-width: 0px) {
[id="s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-e5d39612-0b85-4e5d-ad28-1278e8d5ebb6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 img.shogun-image,
  #s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 {
    width: 100%;
    height: auto;
  }



  #s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 img.shogun-image {
    

    
    
    
  }


#s-8e80ac32-4b4a-49a1-8086-71055ba7e4d2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 {
  
}
}@media (max-width: 767px){#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 {
  
}
}
#s-2ea2e844-e805-41be-83d3-618ad6c7f3e8 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}



#s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 img.shogun-image,
  #s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 {
    width: 100%;
    height: auto;
  }



  #s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 img.shogun-image {
    

    
    
    
  }


#s-9a9bafc5-888a-4c53-9f16-cc6ea3e483a3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 {
  
}
}@media (max-width: 767px){#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 {
  
}
}
#s-33ba717d-3b01-46cb-a5de-50b5d3b401d8 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 11px;
  
  
  
}



#s-d7ce52d0-3ec1-4924-8105-7ceaa129115e {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-d7ce52d0-3ec1-4924-8105-7ceaa129115e {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-d7ce52d0-3ec1-4924-8105-7ceaa129115e img.shogun-image,
  #s-d7ce52d0-3ec1-4924-8105-7ceaa129115e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7ce52d0-3ec1-4924-8105-7ceaa129115e {
    width: 100%;
    height: auto;
  }



  #s-d7ce52d0-3ec1-4924-8105-7ceaa129115e img.shogun-image {
    

    
    
    
  }


#s-d7ce52d0-3ec1-4924-8105-7ceaa129115e .shogun-image-content {
  
    justify-content: center;
  
}

#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf {
  
}
}@media (max-width: 767px){#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf {
  
}
}
#s-7fe7fc56-ee06-49f2-a598-0455acd5e9bf .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}



#s-a4766e16-7c7a-477c-ac5b-80b7729503df {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-a4766e16-7c7a-477c-ac5b-80b7729503df {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-a4766e16-7c7a-477c-ac5b-80b7729503df img.shogun-image,
  #s-a4766e16-7c7a-477c-ac5b-80b7729503df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a4766e16-7c7a-477c-ac5b-80b7729503df {
    width: 100%;
    height: auto;
  }



  #s-a4766e16-7c7a-477c-ac5b-80b7729503df img.shogun-image {
    

    
    
    
  }


#s-a4766e16-7c7a-477c-ac5b-80b7729503df .shogun-image-content {
  
    justify-content: center;
  
}

#s-cee10151-27dc-48a0-bd4f-d24260225754 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-cee10151-27dc-48a0-bd4f-d24260225754 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cee10151-27dc-48a0-bd4f-d24260225754 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cee10151-27dc-48a0-bd4f-d24260225754 {
  
}
}@media (max-width: 767px){#s-cee10151-27dc-48a0-bd4f-d24260225754 {
  
}
}
#s-cee10151-27dc-48a0-bd4f-d24260225754 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}



#s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 img.shogun-image,
  #s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 {
    width: 100%;
    height: auto;
  }



  #s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 img.shogun-image {
    

    
    
    
  }


#s-fa943d8a-0af0-4b06-ab61-ddb9c2dcb3d6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 {
  
}
}@media (max-width: 767px){#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 {
  
}
}
#s-b64a7dcf-c387-4cc0-996d-624ee087b7a3 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}



#s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 15px;
max-width: 1100px;
aspect-ratio: 1100/530;
text-align: center;
}

#s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c {
  overflow: hidden;
  
  
      max-width: 1100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c img.shogun-image,
  #s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c {
    width: 100%;
    height: auto;
  }



  #s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c img.shogun-image {
    

    
    
    
  }


#s-b016065d-b8f9-4c88-b5ee-4f6a73bfb71c .shogun-image-content {
  
    justify-content: center;
  
}

#s-4766510b-1d34-409f-8d60-91074dac5e61 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-4766510b-1d34-409f-8d60-91074dac5e61 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4766510b-1d34-409f-8d60-91074dac5e61 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4766510b-1d34-409f-8d60-91074dac5e61 {
  
}
}@media (max-width: 767px){#s-4766510b-1d34-409f-8d60-91074dac5e61 {
  
}
}
#s-4766510b-1d34-409f-8d60-91074dac5e61 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 12px;
  
  
  
}



#s-d1abc648-df77-417a-9176-ef35722bb764 {
  text-align: left;
}

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

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
