.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-6eb24504-643c-4ebb-9a65-6066b7ea1e8c {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6eb24504-643c-4ebb-9a65-6066b7ea1e8c {
  
}
}@media (max-width: 767px){#s-6eb24504-643c-4ebb-9a65-6066b7ea1e8c {
  
}
}







#s-6eb24504-643c-4ebb-9a65-6066b7ea1e8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6eb24504-643c-4ebb-9a65-6066b7ea1e8c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

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

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

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  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;
  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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-daa9ad07-7e10-4cb0-b05c-9df45095f659 {
  text-align: center;
}
@media (min-width: 1200px){#s-daa9ad07-7e10-4cb0-b05c-9df45095f659 {
  display: none;
}
#s-daa9ad07-7e10-4cb0-b05c-9df45095f659, #wrap-s-daa9ad07-7e10-4cb0-b05c-9df45095f659 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-daa9ad07-7e10-4cb0-b05c-9df45095f659 {
  display: none;
}
#s-daa9ad07-7e10-4cb0-b05c-9df45095f659, #wrap-s-daa9ad07-7e10-4cb0-b05c-9df45095f659 { display: none !important; }}@media (max-width: 767px){#s-daa9ad07-7e10-4cb0-b05c-9df45095f659 {
  
}
}






  img.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
    
    
  }


.s-daa9ad07-7e10-4cb0-b05c-9df45095f659 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
    
    
  }


.s-daa9ad07-7e10-4cb0-b05c-9df45095f659 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
    
    
  }


.s-daa9ad07-7e10-4cb0-b05c-9df45095f659 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
    
    
  }


.s-daa9ad07-7e10-4cb0-b05c-9df45095f659 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
    
    
  }


.s-daa9ad07-7e10-4cb0-b05c-9df45095f659 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa9ad07-7e10-4cb0-b05c-9df45095f659.shogun-image {
  box-sizing: border-box;
}




}
#s-c2653b8f-a976-4df6-bc15-668fa4c281e9 {
  min-height: 50px;
}








#s-c2653b8f-a976-4df6-bc15-668fa4c281e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2653b8f-a976-4df6-bc15-668fa4c281e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-677169db-f7e5-470c-a5a1-b72dd31f9210 {
  display: none;
}
#s-677169db-f7e5-470c-a5a1-b72dd31f9210, #wrap-s-677169db-f7e5-470c-a5a1-b72dd31f9210 { display: none !important; }}@media (max-width: 767px){#s-677169db-f7e5-470c-a5a1-b72dd31f9210 {
  display: none;
}
#s-677169db-f7e5-470c-a5a1-b72dd31f9210, #wrap-s-677169db-f7e5-470c-a5a1-b72dd31f9210 { display: none !important; }}






  img.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
    
    
  }


.s-677169db-f7e5-470c-a5a1-b72dd31f9210 .shogun-image-content {
  
    align-items: center;
  
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
    
    
  }


.s-677169db-f7e5-470c-a5a1-b72dd31f9210 .shogun-image-content {
  
    align-items: center;
  
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
    
    
  }


.s-677169db-f7e5-470c-a5a1-b72dd31f9210 .shogun-image-content {
  
    align-items: center;
  
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
    
    
  }


.s-677169db-f7e5-470c-a5a1-b72dd31f9210 .shogun-image-content {
  
    align-items: center;
  
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
    
    
  }


.s-677169db-f7e5-470c-a5a1-b72dd31f9210 .shogun-image-content {
  
    align-items: center;
  
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677169db-f7e5-470c-a5a1-b72dd31f9210.shogun-image {
  box-sizing: border-box;
}




}
#s-e93985ce-755e-42fc-94e5-02a7581e5c25 {
  min-height: 50px;
}








#s-e93985ce-755e-42fc-94e5-02a7581e5c25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e93985ce-755e-42fc-94e5-02a7581e5c25.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-14df04ed-a558-49e6-84ae-c4a763714120 {
  padding-left: 15%;
padding-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-14df04ed-a558-49e6-84ae-c4a763714120 {
  display: none;
}
#s-14df04ed-a558-49e6-84ae-c4a763714120, #wrap-s-14df04ed-a558-49e6-84ae-c4a763714120 { display: none !important; }}@media (max-width: 767px){#s-14df04ed-a558-49e6-84ae-c4a763714120 {
  display: none;
}
#s-14df04ed-a558-49e6-84ae-c4a763714120, #wrap-s-14df04ed-a558-49e6-84ae-c4a763714120 { display: none !important; }}
#s-b314a1f9-23d5-4927-af49-5381aa3b24a1 {
  padding-left: 15%;
padding-right: 15%;
}
@media (min-width: 1200px){#s-b314a1f9-23d5-4927-af49-5381aa3b24a1 {
  display: none;
}
#s-b314a1f9-23d5-4927-af49-5381aa3b24a1, #wrap-s-b314a1f9-23d5-4927-af49-5381aa3b24a1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b314a1f9-23d5-4927-af49-5381aa3b24a1 {
  display: none;
}
#s-b314a1f9-23d5-4927-af49-5381aa3b24a1, #wrap-s-b314a1f9-23d5-4927-af49-5381aa3b24a1 { display: none !important; }}
#s-91aa2cdb-e84c-414c-a8af-c2da4456ac45 {
  padding-left: 15%;
padding-right: 15%;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-bebb1987-6292-45c4-a2c7-9ab256f93a6c {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-bebb1987-6292-45c4-a2c7-9ab256f93a6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bebb1987-6292-45c4-a2c7-9ab256f93a6c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bebb1987-6292-45c4-a2c7-9ab256f93a6c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bebb1987-6292-45c4-a2c7-9ab256f93a6c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 {
  display: none;
}
#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0, #wrap-s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 { display: none !important; }}@media (max-width: 767px){#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 {
  display: none;
}
#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0, #wrap-s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 { display: none !important; }}







#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b047cb2-ad2d-4ea1-b0c0-aaa77376eef0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5729f097-ccbf-43a3-b0b7-425851285343 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-5729f097-ccbf-43a3-b0b7-425851285343 {
  display: none;
}
#s-5729f097-ccbf-43a3-b0b7-425851285343, #wrap-s-5729f097-ccbf-43a3-b0b7-425851285343 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5729f097-ccbf-43a3-b0b7-425851285343 {
  display: none;
}
#s-5729f097-ccbf-43a3-b0b7-425851285343, #wrap-s-5729f097-ccbf-43a3-b0b7-425851285343 { display: none !important; }}







#s-5729f097-ccbf-43a3-b0b7-425851285343 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5729f097-ccbf-43a3-b0b7-425851285343.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

.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-bbcc4b57-0d30-4430-8bb1-3425259c1a91 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-bbcc4b57-0d30-4430-8bb1-3425259c1a91 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-bbcc4b57-0d30-4430-8bb1-3425259c1a91 .shg-sld-nav-button.shg-sld-left,
#s-bbcc4b57-0d30-4430-8bb1-3425259c1a91 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
  max-width: 953px;
aspect-ratio: 953/1334;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
    width: 100%;
    height: auto;
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
    
    
  }


.s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-content {
  
    align-items: center;
  
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
      position: relative;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
    width: 100%;
    height: auto;
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
    
    
  }


.s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-content {
  
    align-items: center;
  
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
      position: relative;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
    width: 100%;
    height: auto;
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
    
    
  }


.s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-content {
  
    align-items: center;
  
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
      position: relative;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
    width: 100%;
    height: auto;
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
    
    
  }


.s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-content {
  
    align-items: center;
  
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
      position: relative;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
    width: 100%;
    height: auto;
  }

  #s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
    
    
  }


.s-3638fd50-bc86-459c-a2b5-bb90e37f6550 .shogun-image-content {
  
    align-items: center;
  
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container {
      position: relative;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3638fd50-bc86-459c-a2b5-bb90e37f6550 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
  max-width: 1072px;
aspect-ratio: 1072/1500;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }

    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-link {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
    width: 100%;
    height: auto;
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
    
    
  }


.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-content {
  
    align-items: center;
  
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
      --shg-aspect-ratio: calc(1072/1500); 
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
      position: relative;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }

    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-link {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
    width: 100%;
    height: auto;
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
    
    
  }


.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-content {
  
    align-items: center;
  
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
      --shg-aspect-ratio: calc(1072/1500); 
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
      position: relative;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }

    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-link {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
    width: 100%;
    height: auto;
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
    
    
  }


.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-content {
  
    align-items: center;
  
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
      --shg-aspect-ratio: calc(1072/1500); 
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
      position: relative;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }

    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-link {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
    width: 100%;
    height: auto;
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
    
    
  }


.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-content {
  
    align-items: center;
  
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
      --shg-aspect-ratio: calc(1072/1500); 
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
      position: relative;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }

    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-link {
      aspect-ratio: 1072/1500;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
    width: 100%;
    height: auto;
  }

  #s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
    
    
  }


.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 .shogun-image-content {
  
    align-items: center;
  
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 {
      --shg-aspect-ratio: calc(1072/1500); 
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container {
      position: relative;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c76cec6e-fd59-4e7e-830a-d4c5d01fe610 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
  max-width: 953px;
aspect-ratio: 953/1334;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
    width: 100%;
    height: auto;
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
    
    
  }


.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
      position: relative;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
    width: 100%;
    height: auto;
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
    
    
  }


.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
      position: relative;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
    width: 100%;
    height: auto;
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
    
    
  }


.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
      position: relative;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
    width: 100%;
    height: auto;
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
    
    
  }


.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
      position: relative;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
    width: 100%;
    height: auto;
  }

  #s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
    
    
  }


.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container {
      position: relative;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f277edc-d9e2-4ca0-96f6-206cc2364d73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
  max-width: 953px;
aspect-ratio: 953/1334;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
    width: 100%;
    height: auto;
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
    
    
  }


.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
      position: relative;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
    width: 100%;
    height: auto;
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
    
    
  }


.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
      position: relative;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
    width: 100%;
    height: auto;
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
    
    
  }


.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
      position: relative;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
    width: 100%;
    height: auto;
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
    
    
  }


.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
      position: relative;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }

    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-link {
      aspect-ratio: 953/1334;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
    width: 100%;
    height: auto;
  }

  #s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
    
    
  }


.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d {
      --shg-aspect-ratio: calc(953/1334); 
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container {
      position: relative;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8ab92310-9b5c-4a1a-b3fc-d233252bbf1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-113fb38e-8fc1-47be-8cf1-8c8da9f9ea28 {
  min-height: 50px;
}








#s-113fb38e-8fc1-47be-8cf1-8c8da9f9ea28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-113fb38e-8fc1-47be-8cf1-8c8da9f9ea28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65defed6-53f9-45e4-8318-67faf79b5d2b {
  padding-left: 0%;
padding-right: 0%;
}

#s-8a5cc2a6-d971-40c3-bce8-561287d4738e {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8a5cc2a6-d971-40c3-bce8-561287d4738e {
  display: none;
}
#s-8a5cc2a6-d971-40c3-bce8-561287d4738e, #wrap-s-8a5cc2a6-d971-40c3-bce8-561287d4738e { display: none !important; }}@media (max-width: 767px){#s-8a5cc2a6-d971-40c3-bce8-561287d4738e {
  display: none;
}
#s-8a5cc2a6-d971-40c3-bce8-561287d4738e, #wrap-s-8a5cc2a6-d971-40c3-bce8-561287d4738e { display: none !important; }}







#s-8a5cc2a6-d971-40c3-bce8-561287d4738e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a5cc2a6-d971-40c3-bce8-561287d4738e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a67b47b-007d-41dc-9be8-ce887c914755 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-8a67b47b-007d-41dc-9be8-ce887c914755 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-8a67b47b-007d-41dc-9be8-ce887c914755 .shg-sld-nav-button.shg-sld-left,
#s-8a67b47b-007d-41dc-9be8-ce887c914755 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
  max-width: 766px;
aspect-ratio: 766/1073;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
    width: 100%;
    height: auto;
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
    
    
  }


.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-content {
  
    align-items: center;
  
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
      position: relative;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
    width: 100%;
    height: auto;
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
    
    
  }


.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-content {
  
    align-items: center;
  
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
      position: relative;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
    width: 100%;
    height: auto;
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
    
    
  }


.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-content {
  
    align-items: center;
  
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
      position: relative;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
    width: 100%;
    height: auto;
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
    
    
  }


.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-content {
  
    align-items: center;
  
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
      position: relative;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
    width: 100%;
    height: auto;
  }

  #s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
    
    
  }


.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af .shogun-image-content {
  
    align-items: center;
  
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container {
      position: relative;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3802f0ad-6ab4-47fa-b4a0-07c7301199af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0f5781ca-a932-4b69-a52b-1062f949327d {
  max-width: 766px;
aspect-ratio: 766/1073;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d {
    width: 100%;
    height: auto;
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
    
    
  }


.s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-content {
  
    align-items: center;
  
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f5781ca-a932-4b69-a52b-1062f949327d {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
      position: relative;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d {
    width: 100%;
    height: auto;
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
    
    
  }


.s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-content {
  
    align-items: center;
  
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f5781ca-a932-4b69-a52b-1062f949327d {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
      position: relative;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d {
    width: 100%;
    height: auto;
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
    
    
  }


.s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-content {
  
    align-items: center;
  
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f5781ca-a932-4b69-a52b-1062f949327d {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
      position: relative;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d {
    width: 100%;
    height: auto;
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
    
    
  }


.s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-content {
  
    align-items: center;
  
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f5781ca-a932-4b69-a52b-1062f949327d {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
      position: relative;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0f5781ca-a932-4b69-a52b-1062f949327d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d {
    width: 100%;
    height: auto;
  }

  #s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
    
    
  }


.s-0f5781ca-a932-4b69-a52b-1062f949327d .shogun-image-content {
  
    align-items: center;
  
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0f5781ca-a932-4b69-a52b-1062f949327d {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container {
      position: relative;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0f5781ca-a932-4b69-a52b-1062f949327d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fde83952-0b83-41b5-91e8-9cf946610810 {
  max-width: 766px;
aspect-ratio: 766/1073;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 {
    width: 100%;
    height: auto;
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
    
    
  }


.s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-content {
  
    align-items: center;
  
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fde83952-0b83-41b5-91e8-9cf946610810 {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
      position: relative;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 {
    width: 100%;
    height: auto;
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
    
    
  }


.s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-content {
  
    align-items: center;
  
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fde83952-0b83-41b5-91e8-9cf946610810 {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
      position: relative;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 {
    width: 100%;
    height: auto;
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
    
    
  }


.s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-content {
  
    align-items: center;
  
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fde83952-0b83-41b5-91e8-9cf946610810 {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
      position: relative;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 {
    width: 100%;
    height: auto;
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
    
    
  }


.s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-content {
  
    align-items: center;
  
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fde83952-0b83-41b5-91e8-9cf946610810 {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
      position: relative;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }

    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-link {
      aspect-ratio: 766/1073;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fde83952-0b83-41b5-91e8-9cf946610810 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 {
    width: 100%;
    height: auto;
  }

  #s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
    
    
  }


.s-fde83952-0b83-41b5-91e8-9cf946610810 .shogun-image-content {
  
    align-items: center;
  
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fde83952-0b83-41b5-91e8-9cf946610810 {
      --shg-aspect-ratio: calc(766/1073); 
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container {
      position: relative;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fde83952-0b83-41b5-91e8-9cf946610810 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5733121e-4cde-4146-a12f-f33c4444d163 {
  max-width: 765px;
aspect-ratio: 765/1070;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }

    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-link {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 {
    width: 100%;
    height: auto;
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
    
    
  }


.s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-content {
  
    align-items: center;
  
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5733121e-4cde-4146-a12f-f33c4444d163 {
      --shg-aspect-ratio: calc(765/1070); 
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
      position: relative;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }

    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-link {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 {
    width: 100%;
    height: auto;
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
    
    
  }


.s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-content {
  
    align-items: center;
  
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5733121e-4cde-4146-a12f-f33c4444d163 {
      --shg-aspect-ratio: calc(765/1070); 
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
      position: relative;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }

    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-link {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 {
    width: 100%;
    height: auto;
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
    
    
  }


.s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-content {
  
    align-items: center;
  
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5733121e-4cde-4146-a12f-f33c4444d163 {
      --shg-aspect-ratio: calc(765/1070); 
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
      position: relative;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }

    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-link {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 {
    width: 100%;
    height: auto;
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
    
    
  }


.s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-content {
  
    align-items: center;
  
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5733121e-4cde-4146-a12f-f33c4444d163 {
      --shg-aspect-ratio: calc(765/1070); 
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
      position: relative;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }

    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-link {
      aspect-ratio: 765/1070;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5733121e-4cde-4146-a12f-f33c4444d163 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 {
    width: 100%;
    height: auto;
  }

  #s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
    
    
  }


.s-5733121e-4cde-4146-a12f-f33c4444d163 .shogun-image-content {
  
    align-items: center;
  
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5733121e-4cde-4146-a12f-f33c4444d163 {
      --shg-aspect-ratio: calc(765/1070); 
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container {
      position: relative;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5733121e-4cde-4146-a12f-f33c4444d163 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-dbae92e8-563e-421d-a15f-4b9984b2c39f {
  min-height: 50px;
}








#s-dbae92e8-563e-421d-a15f-4b9984b2c39f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbae92e8-563e-421d-a15f-4b9984b2c39f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb46753a-f117-4025-b22e-d04e7f52122a {
  padding-left: 0%;
padding-right: 0%;
}

#s-8a7356c6-a820-4b01-90ac-0daaec35338f {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-8a7356c6-a820-4b01-90ac-0daaec35338f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a7356c6-a820-4b01-90ac-0daaec35338f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8a7356c6-a820-4b01-90ac-0daaec35338f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a7356c6-a820-4b01-90ac-0daaec35338f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d {
  display: none;
}
#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d, #wrap-s-2080e64b-36e9-4663-b767-0e8eea7e7e0d { display: none !important; }}@media (max-width: 767px){#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d {
  display: none;
}
#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d, #wrap-s-2080e64b-36e9-4663-b767-0e8eea7e7e0d { display: none !important; }}







#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2080e64b-36e9-4663-b767-0e8eea7e7e0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-034a98be-902e-4144-a88c-87efa7138c60 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-034a98be-902e-4144-a88c-87efa7138c60 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-034a98be-902e-4144-a88c-87efa7138c60 .shg-sld-nav-button.shg-sld-left,
#s-034a98be-902e-4144-a88c-87efa7138c60 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-1e981812-6c11-459e-a144-bd537fde9571 {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 {
    width: 100%;
    height: auto;
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
    
    
  }


.s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e981812-6c11-459e-a144-bd537fde9571 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
      position: relative;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 {
    width: 100%;
    height: auto;
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
    
    
  }


.s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e981812-6c11-459e-a144-bd537fde9571 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
      position: relative;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 {
    width: 100%;
    height: auto;
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
    
    
  }


.s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e981812-6c11-459e-a144-bd537fde9571 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
      position: relative;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 {
    width: 100%;
    height: auto;
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
    
    
  }


.s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e981812-6c11-459e-a144-bd537fde9571 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
      position: relative;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e981812-6c11-459e-a144-bd537fde9571 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 {
    width: 100%;
    height: auto;
  }

  #s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
    
    
  }


.s-1e981812-6c11-459e-a144-bd537fde9571 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e981812-6c11-459e-a144-bd537fde9571 {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container {
      position: relative;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e981812-6c11-459e-a144-bd537fde9571 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6792146c-9556-4e05-93e8-e5822e428a7a {
  max-width: 1500px;
aspect-ratio: 1500/2100;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a {
    width: 100%;
    height: auto;
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
    
    
  }


.s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-content {
  
    align-items: center;
  
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6792146c-9556-4e05-93e8-e5822e428a7a {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
      position: relative;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a {
    width: 100%;
    height: auto;
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
    
    
  }


.s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-content {
  
    align-items: center;
  
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6792146c-9556-4e05-93e8-e5822e428a7a {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
      position: relative;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a {
    width: 100%;
    height: auto;
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
    
    
  }


.s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-content {
  
    align-items: center;
  
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6792146c-9556-4e05-93e8-e5822e428a7a {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
      position: relative;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a {
    width: 100%;
    height: auto;
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
    
    
  }


.s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-content {
  
    align-items: center;
  
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6792146c-9556-4e05-93e8-e5822e428a7a {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
      position: relative;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }

    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-link {
      aspect-ratio: 1500/2100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6792146c-9556-4e05-93e8-e5822e428a7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a {
    width: 100%;
    height: auto;
  }

  #s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
    
    
  }


.s-6792146c-9556-4e05-93e8-e5822e428a7a .shogun-image-content {
  
    align-items: center;
  
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6792146c-9556-4e05-93e8-e5822e428a7a {
      --shg-aspect-ratio: calc(1500/2100); 
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container {
      position: relative;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6792146c-9556-4e05-93e8-e5822e428a7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
  max-width: 3791px;
aspect-ratio: 3791/5308;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
    width: 100%;
    height: auto;
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
    
    
  }


.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-content {
  
    align-items: center;
  
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
      position: relative;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
    width: 100%;
    height: auto;
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
    
    
  }


.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-content {
  
    align-items: center;
  
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
      position: relative;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
    width: 100%;
    height: auto;
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
    
    
  }


.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-content {
  
    align-items: center;
  
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
      position: relative;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
    width: 100%;
    height: auto;
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
    
    
  }


.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-content {
  
    align-items: center;
  
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
      position: relative;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
    width: 100%;
    height: auto;
  }

  #s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
    
    
  }


.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c .shogun-image-content {
  
    align-items: center;
  
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container {
      position: relative;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e3c2a9c-3f45-4fa1-93f3-59ebac56f67c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-05b04a46-991c-484c-98a4-86ce322c1f47 {
  min-height: 50px;
}








#s-05b04a46-991c-484c-98a4-86ce322c1f47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05b04a46-991c-484c-98a4-86ce322c1f47.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a87a32f0-cfb8-40da-b37e-3e4683136ea7 {
  padding-left: 0%;
padding-right: 0%;
}

#s-0cbf05e7-ab74-4f15-baec-baabc14abec2 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0cbf05e7-ab74-4f15-baec-baabc14abec2 {
  display: none;
}
#s-0cbf05e7-ab74-4f15-baec-baabc14abec2, #wrap-s-0cbf05e7-ab74-4f15-baec-baabc14abec2 { display: none !important; }}@media (max-width: 767px){#s-0cbf05e7-ab74-4f15-baec-baabc14abec2 {
  display: none;
}
#s-0cbf05e7-ab74-4f15-baec-baabc14abec2, #wrap-s-0cbf05e7-ab74-4f15-baec-baabc14abec2 { display: none !important; }}







#s-0cbf05e7-ab74-4f15-baec-baabc14abec2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cbf05e7-ab74-4f15-baec-baabc14abec2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f6aaa72-308c-4668-a9b7-8e2ef005d8b4 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-0f6aaa72-308c-4668-a9b7-8e2ef005d8b4 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-0f6aaa72-308c-4668-a9b7-8e2ef005d8b4 .shg-sld-nav-button.shg-sld-left,
#s-0f6aaa72-308c-4668-a9b7-8e2ef005d8b4 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-e156379c-108d-478f-91e3-d2a83d56970f {
  max-width: 1068px;
aspect-ratio: 1068/1496;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f {
    width: 100%;
    height: auto;
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
    
    
  }


.s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-content {
  
    align-items: center;
  
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e156379c-108d-478f-91e3-d2a83d56970f {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
      position: relative;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f {
    width: 100%;
    height: auto;
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
    
    
  }


.s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-content {
  
    align-items: center;
  
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e156379c-108d-478f-91e3-d2a83d56970f {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
      position: relative;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f {
    width: 100%;
    height: auto;
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
    
    
  }


.s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-content {
  
    align-items: center;
  
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e156379c-108d-478f-91e3-d2a83d56970f {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
      position: relative;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f {
    width: 100%;
    height: auto;
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
    
    
  }


.s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-content {
  
    align-items: center;
  
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e156379c-108d-478f-91e3-d2a83d56970f {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
      position: relative;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e156379c-108d-478f-91e3-d2a83d56970f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f {
    width: 100%;
    height: auto;
  }

  #s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
    
    
  }


.s-e156379c-108d-478f-91e3-d2a83d56970f .shogun-image-content {
  
    align-items: center;
  
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e156379c-108d-478f-91e3-d2a83d56970f {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container {
      position: relative;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e156379c-108d-478f-91e3-d2a83d56970f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-70cff421-d01a-45f0-a5da-32bc706e235a {
  max-width: 1068px;
aspect-ratio: 1068/1496;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a {
    width: 100%;
    height: auto;
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
    
    
  }


.s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-content {
  
    align-items: center;
  
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cff421-d01a-45f0-a5da-32bc706e235a {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
      position: relative;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a {
    width: 100%;
    height: auto;
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
    
    
  }


.s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-content {
  
    align-items: center;
  
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cff421-d01a-45f0-a5da-32bc706e235a {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
      position: relative;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a {
    width: 100%;
    height: auto;
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
    
    
  }


.s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-content {
  
    align-items: center;
  
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cff421-d01a-45f0-a5da-32bc706e235a {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
      position: relative;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a {
    width: 100%;
    height: auto;
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
    
    
  }


.s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-content {
  
    align-items: center;
  
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cff421-d01a-45f0-a5da-32bc706e235a {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
      position: relative;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }

    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-link {
      aspect-ratio: 1068/1496;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70cff421-d01a-45f0-a5da-32bc706e235a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a {
    width: 100%;
    height: auto;
  }

  #s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
    
    
  }


.s-70cff421-d01a-45f0-a5da-32bc706e235a .shogun-image-content {
  
    align-items: center;
  
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70cff421-d01a-45f0-a5da-32bc706e235a {
      --shg-aspect-ratio: calc(1068/1496); 
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container {
      position: relative;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70cff421-d01a-45f0-a5da-32bc706e235a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
  max-width: 3791px;
aspect-ratio: 3791/5308;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
    width: 100%;
    height: auto;
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
    
    
  }


.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-content {
  
    align-items: center;
  
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
      position: relative;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
    width: 100%;
    height: auto;
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
    
    
  }


.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-content {
  
    align-items: center;
  
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
      position: relative;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
    width: 100%;
    height: auto;
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
    
    
  }


.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-content {
  
    align-items: center;
  
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
      position: relative;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
    width: 100%;
    height: auto;
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
    
    
  }


.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-content {
  
    align-items: center;
  
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
      position: relative;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
    width: 100%;
    height: auto;
  }

  #s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
    
    
  }


.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc .shogun-image-content {
  
    align-items: center;
  
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container {
      position: relative;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ff831dcd-bef4-46a9-82d6-56f46cb113fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9436af24-28d1-497e-92ac-18f316fe5b60 {
  min-height: 50px;
}








#s-9436af24-28d1-497e-92ac-18f316fe5b60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9436af24-28d1-497e-92ac-18f316fe5b60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7085356-6c22-43c6-a8cc-ae43c5d21f97 {
  padding-left: 0%;
padding-right: 0%;
}

#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 {
  display: none;
}
#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74, #wrap-s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 { display: none !important; }}@media (max-width: 767px){#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 {
  display: none;
}
#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74, #wrap-s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 { display: none !important; }}







#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c95ebb4d-8a1a-4b2c-a8a4-dbcca20ceb74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73e25ee7-eaae-4788-a0ee-b34e2b9a9a19 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-73e25ee7-eaae-4788-a0ee-b34e2b9a9a19 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-73e25ee7-eaae-4788-a0ee-b34e2b9a9a19 .shg-sld-nav-button.shg-sld-left,
#s-73e25ee7-eaae-4788-a0ee-b34e2b9a9a19 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
    width: 100%;
    height: auto;
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
    
    
  }


.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-content {
  
    align-items: center;
  
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
      position: relative;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
    width: 100%;
    height: auto;
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
    
    
  }


.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-content {
  
    align-items: center;
  
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
      position: relative;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
    width: 100%;
    height: auto;
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
    
    
  }


.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-content {
  
    align-items: center;
  
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
      position: relative;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
    width: 100%;
    height: auto;
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
    
    
  }


.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-content {
  
    align-items: center;
  
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
      position: relative;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
    width: 100%;
    height: auto;
  }

  #s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
    
    
  }


.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e .shogun-image-content {
  
    align-items: center;
  
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container {
      position: relative;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f583ddae-77ba-4d76-95c0-9475b32cfd8e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
    width: 100%;
    height: auto;
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
    
    
  }


.s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
      position: relative;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
    width: 100%;
    height: auto;
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
    
    
  }


.s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
      position: relative;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
    width: 100%;
    height: auto;
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
    
    
  }


.s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
      position: relative;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
    width: 100%;
    height: auto;
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
    
    
  }


.s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
      position: relative;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
    width: 100%;
    height: auto;
  }

  #s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
    
    
  }


.s-f7715621-01ac-4b8f-a565-dac5ea816fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container {
      position: relative;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7715621-01ac-4b8f-a565-dac5ea816fa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4385124a-b631-4352-9366-e789b9c87199 {
  max-width: 3791px;
aspect-ratio: 3791/5308;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 {
    width: 100%;
    height: auto;
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
    
    
  }


.s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-content {
  
    align-items: center;
  
}

.s-4385124a-b631-4352-9366-e789b9c87199.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4385124a-b631-4352-9366-e789b9c87199 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
      position: relative;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 {
    width: 100%;
    height: auto;
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
    
    
  }


.s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-content {
  
    align-items: center;
  
}

.s-4385124a-b631-4352-9366-e789b9c87199.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4385124a-b631-4352-9366-e789b9c87199 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
      position: relative;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 {
    width: 100%;
    height: auto;
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
    
    
  }


.s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-content {
  
    align-items: center;
  
}

.s-4385124a-b631-4352-9366-e789b9c87199.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4385124a-b631-4352-9366-e789b9c87199 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
      position: relative;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 {
    width: 100%;
    height: auto;
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
    
    
  }


.s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-content {
  
    align-items: center;
  
}

.s-4385124a-b631-4352-9366-e789b9c87199.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4385124a-b631-4352-9366-e789b9c87199 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
      position: relative;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4385124a-b631-4352-9366-e789b9c87199 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 {
    width: 100%;
    height: auto;
  }

  #s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
    
    
  }


.s-4385124a-b631-4352-9366-e789b9c87199 .shogun-image-content {
  
    align-items: center;
  
}

.s-4385124a-b631-4352-9366-e789b9c87199.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4385124a-b631-4352-9366-e789b9c87199.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4385124a-b631-4352-9366-e789b9c87199 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container {
      position: relative;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4385124a-b631-4352-9366-e789b9c87199.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4385124a-b631-4352-9366-e789b9c87199 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0a4f7678-ec31-4445-9474-48402ba85f62 {
  min-height: 50px;
}








#s-0a4f7678-ec31-4445-9474-48402ba85f62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a4f7678-ec31-4445-9474-48402ba85f62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd8df98c-f6ab-45bc-bd63-9c64cd8812e8 {
  padding-left: 0%;
padding-right: 0%;
}

#s-88e06281-50e5-44ba-a5d6-daefa09615b0 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-88e06281-50e5-44ba-a5d6-daefa09615b0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-88e06281-50e5-44ba-a5d6-daefa09615b0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-88e06281-50e5-44ba-a5d6-daefa09615b0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-88e06281-50e5-44ba-a5d6-daefa09615b0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 {
  display: none;
}
#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94, #wrap-s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 { display: none !important; }}@media (max-width: 767px){#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 {
  display: none;
}
#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94, #wrap-s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 { display: none !important; }}







#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b00bcc86-5d73-4253-9dc8-4fd1517b2d94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-512bef1f-b0f4-4cfc-8615-cf840ce94de2 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-512bef1f-b0f4-4cfc-8615-cf840ce94de2 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-512bef1f-b0f4-4cfc-8615-cf840ce94de2 .shg-sld-nav-button.shg-sld-left,
#s-512bef1f-b0f4-4cfc-8615-cf840ce94de2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb {
  text-align: center;
}







  img.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
    
    
  }


.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb .shogun-image-content {
  
    align-items: center;
  
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
    
    
  }


.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb .shogun-image-content {
  
    align-items: center;
  
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
    
    
  }


.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb .shogun-image-content {
  
    align-items: center;
  
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
    
    
  }


.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb .shogun-image-content {
  
    align-items: center;
  
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
    
    
  }


.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb .shogun-image-content {
  
    align-items: center;
  
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0fa8b1a-fefd-45b6-9595-50766d9a82cb.shogun-image {
  box-sizing: border-box;
}




}
#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b {
  text-align: center;
}







  img.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
    
    
  }


.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
    
    
  }


.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
    
    
  }


.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
    
    
  }


.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
    
    
  }


.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d4c4971-9a93-467f-ad70-f0381c31aa7b.shogun-image {
  box-sizing: border-box;
}




}
#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f {
  text-align: center;
}







  img.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
    
    
  }


.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f .shogun-image-content {
  
    align-items: center;
  
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
    
    
  }


.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f .shogun-image-content {
  
    align-items: center;
  
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
    
    
  }


.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f .shogun-image-content {
  
    align-items: center;
  
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
    
    
  }


.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f .shogun-image-content {
  
    align-items: center;
  
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
    
    
  }


.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f .shogun-image-content {
  
    align-items: center;
  
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd2593b9-4244-4f19-b7e1-0bafa0c78a2f.shogun-image {
  box-sizing: border-box;
}




}
#s-cb850a87-a464-4659-b83a-13cc3cf206b3 {
  min-height: 50px;
}








#s-cb850a87-a464-4659-b83a-13cc3cf206b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb850a87-a464-4659-b83a-13cc3cf206b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4721cd63-c488-4dd5-99fa-cb2359fdd5ab {
  padding-left: 0%;
padding-right: 0%;
}

#s-921a7047-8b10-4966-a6ef-23c3a1514a27 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-921a7047-8b10-4966-a6ef-23c3a1514a27 {
  display: none;
}
#s-921a7047-8b10-4966-a6ef-23c3a1514a27, #wrap-s-921a7047-8b10-4966-a6ef-23c3a1514a27 { display: none !important; }}@media (max-width: 767px){#s-921a7047-8b10-4966-a6ef-23c3a1514a27 {
  display: none;
}
#s-921a7047-8b10-4966-a6ef-23c3a1514a27, #wrap-s-921a7047-8b10-4966-a6ef-23c3a1514a27 { display: none !important; }}







#s-921a7047-8b10-4966-a6ef-23c3a1514a27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-921a7047-8b10-4966-a6ef-23c3a1514a27.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-502bf43e-0098-46aa-8f67-d1bb06c837d7 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-502bf43e-0098-46aa-8f67-d1bb06c837d7 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-502bf43e-0098-46aa-8f67-d1bb06c837d7 .shg-sld-nav-button.shg-sld-left,
#s-502bf43e-0098-46aa-8f67-d1bb06c837d7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
    width: 100%;
    height: auto;
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
    
    
  }


.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-content {
  
    align-items: center;
  
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
      position: relative;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
    width: 100%;
    height: auto;
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
    
    
  }


.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-content {
  
    align-items: center;
  
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
      position: relative;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
    width: 100%;
    height: auto;
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
    
    
  }


.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-content {
  
    align-items: center;
  
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
      position: relative;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
    width: 100%;
    height: auto;
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
    
    
  }


.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-content {
  
    align-items: center;
  
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
      position: relative;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
    width: 100%;
    height: auto;
  }

  #s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
    
    
  }


.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa .shogun-image-content {
  
    align-items: center;
  
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container {
      position: relative;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fddc2c54-a98f-4eb5-9344-6e7c6d9e77fa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
  max-width: 3791px;
aspect-ratio: 3791/5308;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
    width: 100%;
    height: auto;
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
    
    
  }


.s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-content {
  
    align-items: center;
  
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
      position: relative;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
    width: 100%;
    height: auto;
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
    
    
  }


.s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-content {
  
    align-items: center;
  
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
      position: relative;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
    width: 100%;
    height: auto;
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
    
    
  }


.s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-content {
  
    align-items: center;
  
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
      position: relative;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
    width: 100%;
    height: auto;
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
    
    
  }


.s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-content {
  
    align-items: center;
  
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
      position: relative;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }

    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-link {
      aspect-ratio: 3791/5308;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
    width: 100%;
    height: auto;
  }

  #s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
    
    
  }


.s-4781a82c-a9e2-448c-a2ce-de042f1ea729 .shogun-image-content {
  
    align-items: center;
  
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 {
      --shg-aspect-ratio: calc(3791/5308); 
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container {
      position: relative;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4781a82c-a9e2-448c-a2ce-de042f1ea729 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4a23cb93-eb29-46ae-97c4-0291b181560c {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c {
    width: 100%;
    height: auto;
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
    
    
  }


.s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a23cb93-eb29-46ae-97c4-0291b181560c {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
      position: relative;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c {
    width: 100%;
    height: auto;
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
    
    
  }


.s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a23cb93-eb29-46ae-97c4-0291b181560c {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
      position: relative;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c {
    width: 100%;
    height: auto;
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
    
    
  }


.s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a23cb93-eb29-46ae-97c4-0291b181560c {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
      position: relative;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c {
    width: 100%;
    height: auto;
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
    
    
  }


.s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a23cb93-eb29-46ae-97c4-0291b181560c {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
      position: relative;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4a23cb93-eb29-46ae-97c4-0291b181560c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c {
    width: 100%;
    height: auto;
  }

  #s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
    
    
  }


.s-4a23cb93-eb29-46ae-97c4-0291b181560c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a23cb93-eb29-46ae-97c4-0291b181560c {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container {
      position: relative;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a23cb93-eb29-46ae-97c4-0291b181560c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-aa55bd9a-901e-4170-b655-6b432645695e {
  min-height: 50px;
}








#s-aa55bd9a-901e-4170-b655-6b432645695e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa55bd9a-901e-4170-b655-6b432645695e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c84df6fe-3bd6-44e9-9d2f-fd93d59f80fd {
  padding-left: 0%;
padding-right: 0%;
}

#s-1f342942-1900-429c-9300-39755f2b9415 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1f342942-1900-429c-9300-39755f2b9415 {
  display: none;
}
#s-1f342942-1900-429c-9300-39755f2b9415, #wrap-s-1f342942-1900-429c-9300-39755f2b9415 { display: none !important; }}@media (max-width: 767px){#s-1f342942-1900-429c-9300-39755f2b9415 {
  display: none;
}
#s-1f342942-1900-429c-9300-39755f2b9415, #wrap-s-1f342942-1900-429c-9300-39755f2b9415 { display: none !important; }}







#s-1f342942-1900-429c-9300-39755f2b9415 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f342942-1900-429c-9300-39755f2b9415.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-012dd129-b6d6-436f-ae19-e6266ebaf099 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-012dd129-b6d6-436f-ae19-e6266ebaf099 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-012dd129-b6d6-436f-ae19-e6266ebaf099 .shg-sld-nav-button.shg-sld-left,
#s-012dd129-b6d6-436f-ae19-e6266ebaf099 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
    width: 100%;
    height: auto;
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
    
    
  }


.s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
      position: relative;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
    width: 100%;
    height: auto;
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
    
    
  }


.s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
      position: relative;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
    width: 100%;
    height: auto;
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
    
    
  }


.s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
      position: relative;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
    width: 100%;
    height: auto;
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
    
    
  }


.s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
      position: relative;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
    width: 100%;
    height: auto;
  }

  #s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
    
    
  }


.s-170e9e9c-d7b7-4283-b957-4481b24c57c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container {
      position: relative;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-170e9e9c-d7b7-4283-b957-4481b24c57c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
  max-width: 964px;
aspect-ratio: 964/1350;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
    width: 100%;
    height: auto;
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
    
    
  }


.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-content {
  
    align-items: center;
  
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
      position: relative;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
    width: 100%;
    height: auto;
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
    
    
  }


.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-content {
  
    align-items: center;
  
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
      position: relative;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
    width: 100%;
    height: auto;
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
    
    
  }


.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-content {
  
    align-items: center;
  
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
      position: relative;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
    width: 100%;
    height: auto;
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
    
    
  }


.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-content {
  
    align-items: center;
  
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
      position: relative;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
    width: 100%;
    height: auto;
  }

  #s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
    
    
  }


.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f .shogun-image-content {
  
    align-items: center;
  
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container {
      position: relative;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1ab94224-2f3a-4dfa-9ecb-7f86fb1f4b0f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-58d22459-4afc-469b-8b69-42dd33518eee {
  max-width: 1200px;
aspect-ratio: 1200/1680;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee {
    width: 100%;
    height: auto;
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
    
    
  }


.s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-content {
  
    align-items: center;
  
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58d22459-4afc-469b-8b69-42dd33518eee {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
      position: relative;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee {
    width: 100%;
    height: auto;
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
    
    
  }


.s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-content {
  
    align-items: center;
  
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58d22459-4afc-469b-8b69-42dd33518eee {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
      position: relative;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee {
    width: 100%;
    height: auto;
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
    
    
  }


.s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-content {
  
    align-items: center;
  
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58d22459-4afc-469b-8b69-42dd33518eee {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
      position: relative;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee {
    width: 100%;
    height: auto;
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
    
    
  }


.s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-content {
  
    align-items: center;
  
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58d22459-4afc-469b-8b69-42dd33518eee {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
      position: relative;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }

    #s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-link {
      aspect-ratio: 1200/1680;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58d22459-4afc-469b-8b69-42dd33518eee .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee {
    width: 100%;
    height: auto;
  }

  #s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
    
    
  }


.s-58d22459-4afc-469b-8b69-42dd33518eee .shogun-image-content {
  
    align-items: center;
  
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58d22459-4afc-469b-8b69-42dd33518eee {
      --shg-aspect-ratio: calc(1200/1680); 
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container {
      position: relative;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58d22459-4afc-469b-8b69-42dd33518eee img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d53efebd-8681-47d6-a8e4-362c19cd7193 {
  min-height: 50px;
}








#s-d53efebd-8681-47d6-a8e4-362c19cd7193 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d53efebd-8681-47d6-a8e4-362c19cd7193.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5e7df86a-e7fa-4bb2-8957-19df022fa088 {
  padding-left: 0%;
padding-right: 0%;
}

#s-980bc4e8-88ea-4a96-ab63-57e003c0e726 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-980bc4e8-88ea-4a96-ab63-57e003c0e726"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-980bc4e8-88ea-4a96-ab63-57e003c0e726"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-980bc4e8-88ea-4a96-ab63-57e003c0e726"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-980bc4e8-88ea-4a96-ab63-57e003c0e726"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f98c073c-9e1c-431d-a8e8-57c88461c45f {
  min-height: 50px;
}








#s-f98c073c-9e1c-431d-a8e8-57c88461c45f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f98c073c-9e1c-431d-a8e8-57c88461c45f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16ab2374-d6a5-4e93-9538-df0065cef637 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-16ab2374-d6a5-4e93-9538-df0065cef637 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-16ab2374-d6a5-4e93-9538-df0065cef637 .shg-sld-nav-button.shg-sld-left,
#s-16ab2374-d6a5-4e93-9538-df0065cef637 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-20030d48-3244-4d65-84dc-82954d89722e {
  max-width: 964px;
aspect-ratio: 964/1350;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e {
    width: 100%;
    height: auto;
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
    
    
  }


.s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-content {
  
    align-items: center;
  
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-20030d48-3244-4d65-84dc-82954d89722e {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
      position: relative;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e {
    width: 100%;
    height: auto;
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
    
    
  }


.s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-content {
  
    align-items: center;
  
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-20030d48-3244-4d65-84dc-82954d89722e {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
      position: relative;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e {
    width: 100%;
    height: auto;
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
    
    
  }


.s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-content {
  
    align-items: center;
  
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-20030d48-3244-4d65-84dc-82954d89722e {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
      position: relative;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e {
    width: 100%;
    height: auto;
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
    
    
  }


.s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-content {
  
    align-items: center;
  
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-20030d48-3244-4d65-84dc-82954d89722e {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
      position: relative;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }

    #s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-link {
      aspect-ratio: 964/1350;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-20030d48-3244-4d65-84dc-82954d89722e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e {
    width: 100%;
    height: auto;
  }

  #s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
    
    
  }


.s-20030d48-3244-4d65-84dc-82954d89722e .shogun-image-content {
  
    align-items: center;
  
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-20030d48-3244-4d65-84dc-82954d89722e {
      --shg-aspect-ratio: calc(964/1350); 
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container {
      position: relative;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-20030d48-3244-4d65-84dc-82954d89722e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab {
  text-align: center;
}







  img.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
    
    
  }


.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab .shogun-image-content {
  
    align-items: center;
  
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
    
    
  }


.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab .shogun-image-content {
  
    align-items: center;
  
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
    
    
  }


.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab .shogun-image-content {
  
    align-items: center;
  
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
    
    
  }


.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab .shogun-image-content {
  
    align-items: center;
  
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
    
    
  }


.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab .shogun-image-content {
  
    align-items: center;
  
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bd9233cf-8a29-4cf1-a8ec-917c981e38ab.shogun-image {
  box-sizing: border-box;
}




}
#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
  max-width: 552px;
aspect-ratio: 552/772;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }

    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-link {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
    width: 100%;
    height: auto;
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
    
    
  }


.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-content {
  
    align-items: center;
  
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
      --shg-aspect-ratio: calc(552/772); 
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
      position: relative;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }

    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-link {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
    width: 100%;
    height: auto;
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
    
    
  }


.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-content {
  
    align-items: center;
  
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
      --shg-aspect-ratio: calc(552/772); 
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
      position: relative;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }

    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-link {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
    width: 100%;
    height: auto;
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
    
    
  }


.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-content {
  
    align-items: center;
  
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
      --shg-aspect-ratio: calc(552/772); 
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
      position: relative;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }

    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-link {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
    width: 100%;
    height: auto;
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
    
    
  }


.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-content {
  
    align-items: center;
  
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
      --shg-aspect-ratio: calc(552/772); 
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
      position: relative;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }

    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-link {
      aspect-ratio: 552/772;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
    width: 100%;
    height: auto;
  }

  #s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
    
    
  }


.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 .shogun-image-content {
  
    align-items: center;
  
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 {
      --shg-aspect-ratio: calc(552/772); 
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container {
      position: relative;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-898223a7-4e0a-4fa0-b35d-a23cd0ee5411 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-79bc9542-5352-4ba5-9270-140cb6911f1e {
  min-height: 50px;
}








#s-79bc9542-5352-4ba5-9270-140cb6911f1e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79bc9542-5352-4ba5-9270-140cb6911f1e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7b060ed-88da-40d4-8cd0-96f2d8b6fc39 {
  padding-left: 0%;
padding-right: 0%;
}

#s-df68b671-87af-4af4-867d-57929065e243 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-df68b671-87af-4af4-867d-57929065e243 {
  display: none;
}
#s-df68b671-87af-4af4-867d-57929065e243, #wrap-s-df68b671-87af-4af4-867d-57929065e243 { display: none !important; }}@media (max-width: 767px){#s-df68b671-87af-4af4-867d-57929065e243 {
  display: none;
}
#s-df68b671-87af-4af4-867d-57929065e243, #wrap-s-df68b671-87af-4af4-867d-57929065e243 { display: none !important; }}







#s-df68b671-87af-4af4-867d-57929065e243 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df68b671-87af-4af4-867d-57929065e243.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5bf275ed-ec08-4657-8e70-9aa94f297e77 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-5bf275ed-ec08-4657-8e70-9aa94f297e77 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-5bf275ed-ec08-4657-8e70-9aa94f297e77 .shg-sld-nav-button.shg-sld-left,
#s-5bf275ed-ec08-4657-8e70-9aa94f297e77 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf {
  text-align: center;
}







  img.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
    
    
  }


.s-00c01206-6e04-4f58-b9fb-320bcf6819cf .shogun-image-content {
  
    align-items: center;
  
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
    
    
  }


.s-00c01206-6e04-4f58-b9fb-320bcf6819cf .shogun-image-content {
  
    align-items: center;
  
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
    
    
  }


.s-00c01206-6e04-4f58-b9fb-320bcf6819cf .shogun-image-content {
  
    align-items: center;
  
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
    
    
  }


.s-00c01206-6e04-4f58-b9fb-320bcf6819cf .shogun-image-content {
  
    align-items: center;
  
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
    
    
  }


.s-00c01206-6e04-4f58-b9fb-320bcf6819cf .shogun-image-content {
  
    align-items: center;
  
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00c01206-6e04-4f58-b9fb-320bcf6819cf.shogun-image {
  box-sizing: border-box;
}




}
#s-43965742-848a-44ac-b8d7-629b6ccaea35 {
  text-align: center;
}







  img.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
    
    
  }


.s-43965742-848a-44ac-b8d7-629b6ccaea35 .shogun-image-content {
  
    align-items: center;
  
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
    
    
  }


.s-43965742-848a-44ac-b8d7-629b6ccaea35 .shogun-image-content {
  
    align-items: center;
  
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
    
    
  }


.s-43965742-848a-44ac-b8d7-629b6ccaea35 .shogun-image-content {
  
    align-items: center;
  
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
    
    
  }


.s-43965742-848a-44ac-b8d7-629b6ccaea35 .shogun-image-content {
  
    align-items: center;
  
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
    
    
  }


.s-43965742-848a-44ac-b8d7-629b6ccaea35 .shogun-image-content {
  
    align-items: center;
  
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43965742-848a-44ac-b8d7-629b6ccaea35.shogun-image {
  box-sizing: border-box;
}




}
#s-2c3ccdb9-e716-4531-94da-a4215b59b36b {
  text-align: center;
}







  img.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
    
    
  }


.s-2c3ccdb9-e716-4531-94da-a4215b59b36b .shogun-image-content {
  
    align-items: center;
  
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
    
    
  }


.s-2c3ccdb9-e716-4531-94da-a4215b59b36b .shogun-image-content {
  
    align-items: center;
  
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
    
    
  }


.s-2c3ccdb9-e716-4531-94da-a4215b59b36b .shogun-image-content {
  
    align-items: center;
  
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
    
    
  }


.s-2c3ccdb9-e716-4531-94da-a4215b59b36b .shogun-image-content {
  
    align-items: center;
  
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
    
    
  }


.s-2c3ccdb9-e716-4531-94da-a4215b59b36b .shogun-image-content {
  
    align-items: center;
  
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c3ccdb9-e716-4531-94da-a4215b59b36b.shogun-image {
  box-sizing: border-box;
}




}
#s-979ad2cb-3c42-4991-a59d-165ce7028651 {
  min-height: 50px;
}








#s-979ad2cb-3c42-4991-a59d-165ce7028651 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-979ad2cb-3c42-4991-a59d-165ce7028651.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a24b50c-0205-4e75-bf0c-dd7ebdb0c5f2 {
  padding-left: 0%;
padding-right: 0%;
}

#s-336703d1-8a31-4d99-9f59-eb83843d8a6c {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-336703d1-8a31-4d99-9f59-eb83843d8a6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-336703d1-8a31-4d99-9f59-eb83843d8a6c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-336703d1-8a31-4d99-9f59-eb83843d8a6c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-336703d1-8a31-4d99-9f59-eb83843d8a6c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 {
  display: none;
}
#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5, #wrap-s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 { display: none !important; }}@media (max-width: 767px){#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 {
  display: none;
}
#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5, #wrap-s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 { display: none !important; }}







#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9597a78c-2a8d-431a-bd21-ce984ddaebc5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0155e735-f3b4-4379-b541-b8dd3a887b9f {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-0155e735-f3b4-4379-b541-b8dd3a887b9f .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-0155e735-f3b4-4379-b541-b8dd3a887b9f .shg-sld-nav-button.shg-sld-left,
#s-0155e735-f3b4-4379-b541-b8dd3a887b9f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c {
  text-align: center;
}







  img.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
    
    
  }


.s-85e4eea7-da9d-4170-93d9-76bed18a046c .shogun-image-content {
  
    align-items: center;
  
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
    
    
  }


.s-85e4eea7-da9d-4170-93d9-76bed18a046c .shogun-image-content {
  
    align-items: center;
  
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
    
    
  }


.s-85e4eea7-da9d-4170-93d9-76bed18a046c .shogun-image-content {
  
    align-items: center;
  
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
    
    
  }


.s-85e4eea7-da9d-4170-93d9-76bed18a046c .shogun-image-content {
  
    align-items: center;
  
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
    
    
  }


.s-85e4eea7-da9d-4170-93d9-76bed18a046c .shogun-image-content {
  
    align-items: center;
  
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85e4eea7-da9d-4170-93d9-76bed18a046c.shogun-image {
  box-sizing: border-box;
}




}
#s-f472ab52-90d7-42f6-b917-32039e93cbc7 {
  text-align: center;
}







  img.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
    
    
  }


.s-f472ab52-90d7-42f6-b917-32039e93cbc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
    
    
  }


.s-f472ab52-90d7-42f6-b917-32039e93cbc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
    
    
  }


.s-f472ab52-90d7-42f6-b917-32039e93cbc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
    
    
  }


.s-f472ab52-90d7-42f6-b917-32039e93cbc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
    
    
  }


.s-f472ab52-90d7-42f6-b917-32039e93cbc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f472ab52-90d7-42f6-b917-32039e93cbc7.shogun-image {
  box-sizing: border-box;
}




}
#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 {
  text-align: center;
}







  img.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
    
    
  }


.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
    
    
  }


.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
    
    
  }


.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
    
    
  }


.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
    
    
  }


.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abb3ffa8-8c9d-4dec-9b3e-3bd55617d4d1.shogun-image {
  box-sizing: border-box;
}




}
#s-2a5b7c6a-fd12-4d7e-aab8-1a2a886c1496 {
  min-height: 50px;
}








#s-2a5b7c6a-fd12-4d7e-aab8-1a2a886c1496 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a5b7c6a-fd12-4d7e-aab8-1a2a886c1496.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1797b228-e2d2-491a-977f-d2bf8c6a2549 {
  padding-left: 0%;
padding-right: 0%;
}

#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb {
  display: none;
}
#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb, #wrap-s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb { display: none !important; }}@media (max-width: 767px){#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb {
  display: none;
}
#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb, #wrap-s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb { display: none !important; }}







#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94fb8f7f-b522-4e3d-bf66-46ed3adf1dcb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c04d4234-9088-4b09-af55-9efcbb6108cc {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-c04d4234-9088-4b09-af55-9efcbb6108cc .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-c04d4234-9088-4b09-af55-9efcbb6108cc .shg-sld-nav-button.shg-sld-left,
#s-c04d4234-9088-4b09-af55-9efcbb6108cc .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
  max-width: 950px;
aspect-ratio: 950/1330;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
    width: 100%;
    height: auto;
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
    
    
  }


.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-content {
  
    align-items: center;
  
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
      position: relative;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
    width: 100%;
    height: auto;
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
    
    
  }


.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-content {
  
    align-items: center;
  
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
      position: relative;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
    width: 100%;
    height: auto;
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
    
    
  }


.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-content {
  
    align-items: center;
  
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
      position: relative;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
    width: 100%;
    height: auto;
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
    
    
  }


.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-content {
  
    align-items: center;
  
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
      position: relative;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
    width: 100%;
    height: auto;
  }

  #s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
    
    
  }


.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 .shogun-image-content {
  
    align-items: center;
  
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container {
      position: relative;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-611bfc10-d3a4-4c9a-aac2-a6fe808e7256 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
  max-width: 950px;
aspect-ratio: 950/1330;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
    width: 100%;
    height: auto;
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
    
    
  }


.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-content {
  
    align-items: center;
  
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
      position: relative;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
    width: 100%;
    height: auto;
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
    
    
  }


.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-content {
  
    align-items: center;
  
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
      position: relative;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
    width: 100%;
    height: auto;
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
    
    
  }


.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-content {
  
    align-items: center;
  
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
      position: relative;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
    width: 100%;
    height: auto;
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
    
    
  }


.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-content {
  
    align-items: center;
  
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
      position: relative;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }

    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-link {
      aspect-ratio: 950/1330;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
    width: 100%;
    height: auto;
  }

  #s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
    
    
  }


.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f .shogun-image-content {
  
    align-items: center;
  
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f {
      --shg-aspect-ratio: calc(950/1330); 
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container {
      position: relative;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cea4a54d-0164-4a9d-ac06-7d5a47b07c2f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5b17be48-e244-4948-bc2d-91109cde7d0b {
  max-width: 961px;
aspect-ratio: 961/1345;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }

    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-link {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b {
    width: 100%;
    height: auto;
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
    
    
  }


.s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-content {
  
    align-items: center;
  
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b17be48-e244-4948-bc2d-91109cde7d0b {
      --shg-aspect-ratio: calc(961/1345); 
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
      position: relative;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }

    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-link {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b {
    width: 100%;
    height: auto;
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
    
    
  }


.s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-content {
  
    align-items: center;
  
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b17be48-e244-4948-bc2d-91109cde7d0b {
      --shg-aspect-ratio: calc(961/1345); 
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
      position: relative;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }

    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-link {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b {
    width: 100%;
    height: auto;
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
    
    
  }


.s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-content {
  
    align-items: center;
  
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b17be48-e244-4948-bc2d-91109cde7d0b {
      --shg-aspect-ratio: calc(961/1345); 
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
      position: relative;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }

    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-link {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b {
    width: 100%;
    height: auto;
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
    
    
  }


.s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-content {
  
    align-items: center;
  
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b17be48-e244-4948-bc2d-91109cde7d0b {
      --shg-aspect-ratio: calc(961/1345); 
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
      position: relative;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }

    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-link {
      aspect-ratio: 961/1345;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b17be48-e244-4948-bc2d-91109cde7d0b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b {
    width: 100%;
    height: auto;
  }

  #s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
    
    
  }


.s-5b17be48-e244-4948-bc2d-91109cde7d0b .shogun-image-content {
  
    align-items: center;
  
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b17be48-e244-4948-bc2d-91109cde7d0b {
      --shg-aspect-ratio: calc(961/1345); 
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container {
      position: relative;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b17be48-e244-4948-bc2d-91109cde7d0b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-52324ee0-84d3-4073-a568-02fd0c273925 {
  min-height: 50px;
}








#s-52324ee0-84d3-4073-a568-02fd0c273925 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-52324ee0-84d3-4073-a568-02fd0c273925.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0af14a3c-91a1-4578-b385-67512a2455e5 {
  padding-left: 0%;
padding-right: 0%;
}

#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d {
  display: none;
}
#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d, #wrap-s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d { display: none !important; }}@media (max-width: 767px){#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d {
  display: none;
}
#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d, #wrap-s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d { display: none !important; }}







#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-414b4f1d-0cd1-4b93-af0e-b7210db82f3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb14d81c-186c-427f-b27a-234ce8c885a1 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-cb14d81c-186c-427f-b27a-234ce8c885a1 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-cb14d81c-186c-427f-b27a-234ce8c885a1 .shg-sld-nav-button.shg-sld-left,
#s-cb14d81c-186c-427f-b27a-234ce8c885a1 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e {
  text-align: center;
}







  img.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
    
    
  }


.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
    
    
  }


.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
    
    
  }


.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
    
    
  }


.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
    
    
  }


.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15dd3f4e-af50-47ec-bca5-fb5aa5cc8a2e.shogun-image {
  box-sizing: border-box;
}




}
#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 {
  text-align: center;
}







  img.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
    
    
  }


.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 .shogun-image-content {
  
    align-items: center;
  
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
    
    
  }


.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 .shogun-image-content {
  
    align-items: center;
  
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
    
    
  }


.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 .shogun-image-content {
  
    align-items: center;
  
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
    
    
  }


.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 .shogun-image-content {
  
    align-items: center;
  
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
    
    
  }


.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14 .shogun-image-content {
  
    align-items: center;
  
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99f1a4e6-6a6b-439f-9664-6f70c0c49d14.shogun-image {
  box-sizing: border-box;
}




}
#s-c09a4388-7398-4013-856e-fec1a772980c {
  text-align: center;
}







  img.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
    
    
  }


.s-c09a4388-7398-4013-856e-fec1a772980c .shogun-image-content {
  
    align-items: center;
  
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
    
    
  }


.s-c09a4388-7398-4013-856e-fec1a772980c .shogun-image-content {
  
    align-items: center;
  
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
    
    
  }


.s-c09a4388-7398-4013-856e-fec1a772980c .shogun-image-content {
  
    align-items: center;
  
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
    
    
  }


.s-c09a4388-7398-4013-856e-fec1a772980c .shogun-image-content {
  
    align-items: center;
  
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
    
    
  }


.s-c09a4388-7398-4013-856e-fec1a772980c .shogun-image-content {
  
    align-items: center;
  
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c09a4388-7398-4013-856e-fec1a772980c.shogun-image {
  box-sizing: border-box;
}




}
#s-67cb8d0c-8f64-413c-8c77-79b315daf902 {
  min-height: 50px;
}








#s-67cb8d0c-8f64-413c-8c77-79b315daf902 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67cb8d0c-8f64-413c-8c77-79b315daf902.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fae659f7-aed6-4df8-9c68-d339267edb03 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-fae659f7-aed6-4df8-9c68-d339267edb03"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fae659f7-aed6-4df8-9c68-d339267edb03"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fae659f7-aed6-4df8-9c68-d339267edb03"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fae659f7-aed6-4df8-9c68-d339267edb03"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cd5987e0-c74d-4661-ba98-8067cc23e669 {
  min-height: 100px;
}








#s-cd5987e0-c74d-4661-ba98-8067cc23e669 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd5987e0-c74d-4661-ba98-8067cc23e669.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df {
  text-align: center;
}







  img.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
    
    
  }


.s-80309d14-dd36-43fb-ab78-02a8757b92df .shogun-image-content {
  
    align-items: center;
  
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
    
    
  }


.s-80309d14-dd36-43fb-ab78-02a8757b92df .shogun-image-content {
  
    align-items: center;
  
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
    
    
  }


.s-80309d14-dd36-43fb-ab78-02a8757b92df .shogun-image-content {
  
    align-items: center;
  
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
    
    
  }


.s-80309d14-dd36-43fb-ab78-02a8757b92df .shogun-image-content {
  
    align-items: center;
  
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
    
    
  }


.s-80309d14-dd36-43fb-ab78-02a8757b92df .shogun-image-content {
  
    align-items: center;
  
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80309d14-dd36-43fb-ab78-02a8757b92df.shogun-image {
  box-sizing: border-box;
}




}
#s-d681b33f-667b-4f00-95c0-c4040a31fa3a {
  min-height: 50px;
}








#s-d681b33f-667b-4f00-95c0-c4040a31fa3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d681b33f-667b-4f00-95c0-c4040a31fa3a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d015d039-8ca3-4a72-adee-e5f3bc1a71e2 {
  padding-left: 0%;
padding-right: 0%;
}

#s-7c146d4f-5fac-47e9-9b9a-14018c77d48d {
  min-height: 100px;
}








#s-7c146d4f-5fac-47e9-9b9a-14018c77d48d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c146d4f-5fac-47e9-9b9a-14018c77d48d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09c33921-933d-43d5-af59-c2df49be309c {
  text-align: center;
}







  img.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
    
    
  }


.s-09c33921-933d-43d5-af59-c2df49be309c .shogun-image-content {
  
    align-items: center;
  
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
    
    
  }


.s-09c33921-933d-43d5-af59-c2df49be309c .shogun-image-content {
  
    align-items: center;
  
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
    
    
  }


.s-09c33921-933d-43d5-af59-c2df49be309c .shogun-image-content {
  
    align-items: center;
  
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
    
    
  }


.s-09c33921-933d-43d5-af59-c2df49be309c .shogun-image-content {
  
    align-items: center;
  
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
    
    
  }


.s-09c33921-933d-43d5-af59-c2df49be309c .shogun-image-content {
  
    align-items: center;
  
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09c33921-933d-43d5-af59-c2df49be309c.shogun-image {
  box-sizing: border-box;
}




}
#s-c043a3e3-69e1-4e64-9cae-85c4fc7db63c {
  min-height: 50px;
}








#s-c043a3e3-69e1-4e64-9cae-85c4fc7db63c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c043a3e3-69e1-4e64-9cae-85c4fc7db63c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b88f9ff-bc09-4f00-ae03-26861909b98e {
  padding-left: 0%;
padding-right: 0%;
}

#s-3012c7fc-ad2d-4569-a33a-44451cb98146 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-3012c7fc-ad2d-4569-a33a-44451cb98146"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3012c7fc-ad2d-4569-a33a-44451cb98146"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3012c7fc-ad2d-4569-a33a-44451cb98146"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3012c7fc-ad2d-4569-a33a-44451cb98146"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-42c6917d-0ee3-4f5d-838c-16aba5e8c7e5 {
  min-height: 50px;
}








#s-42c6917d-0ee3-4f5d-838c-16aba5e8c7e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42c6917d-0ee3-4f5d-838c-16aba5e8c7e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc987daf-bf3f-40b6-8ed2-8b686fa30ef3 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-cc987daf-bf3f-40b6-8ed2-8b686fa30ef3 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-cc987daf-bf3f-40b6-8ed2-8b686fa30ef3 .shg-sld-nav-button.shg-sld-left,
#s-cc987daf-bf3f-40b6-8ed2-8b686fa30ef3 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad {
  text-align: center;
}







  img.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
    
    
  }


.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad .shogun-image-content {
  
    align-items: center;
  
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
    
    
  }


.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad .shogun-image-content {
  
    align-items: center;
  
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
    
    
  }


.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad .shogun-image-content {
  
    align-items: center;
  
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
    
    
  }


.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad .shogun-image-content {
  
    align-items: center;
  
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
    
    
  }


.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad .shogun-image-content {
  
    align-items: center;
  
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15f3597e-9bdb-43ed-9035-63b11feeb1ad.shogun-image {
  box-sizing: border-box;
}




}
#s-36095818-2d02-4ead-8963-70460ff837c2 {
  text-align: center;
}







  img.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
    
    
  }


.s-36095818-2d02-4ead-8963-70460ff837c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
    
    
  }


.s-36095818-2d02-4ead-8963-70460ff837c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
    
    
  }


.s-36095818-2d02-4ead-8963-70460ff837c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
    
    
  }


.s-36095818-2d02-4ead-8963-70460ff837c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
    
    
  }


.s-36095818-2d02-4ead-8963-70460ff837c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36095818-2d02-4ead-8963-70460ff837c2.shogun-image {
  box-sizing: border-box;
}




}
#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 {
  text-align: center;
}







  img.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
    
    
  }


.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
    
    
  }


.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
    
    
  }


.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
    
    
  }


.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
    
    
  }


.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dcb91756-5d17-476c-9a09-ecd0a8780cd4.shogun-image {
  box-sizing: border-box;
}




}
#s-02eae9a8-41eb-42a0-a62e-fd4b4a9f342e {
  min-height: 50px;
}








#s-02eae9a8-41eb-42a0-a62e-fd4b4a9f342e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02eae9a8-41eb-42a0-a62e-fd4b4a9f342e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c44033cf-c8c8-4d9b-bd55-1651ea7f43dc {
  padding-left: 0%;
padding-right: 0%;
}

#s-53a3cdce-5670-4f8c-9c0b-2738a6eeb1cd {
  min-height: 50px;
}








#s-53a3cdce-5670-4f8c-9c0b-2738a6eeb1cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53a3cdce-5670-4f8c-9c0b-2738a6eeb1cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca8feefd-592f-4a20-8d0f-ca9575c6251a {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-ca8feefd-592f-4a20-8d0f-ca9575c6251a .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-ca8feefd-592f-4a20-8d0f-ca9575c6251a .shg-sld-nav-button.shg-sld-left,
#s-ca8feefd-592f-4a20-8d0f-ca9575c6251a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 {
  text-align: center;
}







  img.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
    
    
  }


.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 .shogun-image-content {
  
    align-items: center;
  
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
    
    
  }


.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 .shogun-image-content {
  
    align-items: center;
  
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
    
    
  }


.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 .shogun-image-content {
  
    align-items: center;
  
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
    
    
  }


.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 .shogun-image-content {
  
    align-items: center;
  
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
    
    
  }


.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84 .shogun-image-content {
  
    align-items: center;
  
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09756f4-0f7d-4f11-b61a-ddd9300f8e84.shogun-image {
  box-sizing: border-box;
}




}
#s-6ecc3da7-75e8-4571-877e-06829f2da1b7 {
  text-align: center;
}







  img.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
    
    
  }


.s-6ecc3da7-75e8-4571-877e-06829f2da1b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
    
    
  }


.s-6ecc3da7-75e8-4571-877e-06829f2da1b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
    
    
  }


.s-6ecc3da7-75e8-4571-877e-06829f2da1b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
    
    
  }


.s-6ecc3da7-75e8-4571-877e-06829f2da1b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
    
    
  }


.s-6ecc3da7-75e8-4571-877e-06829f2da1b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ecc3da7-75e8-4571-877e-06829f2da1b7.shogun-image {
  box-sizing: border-box;
}




}
#s-b9edc646-8fb3-4b65-961d-3c0b974bda87 {
  text-align: center;
}







  img.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
    
    
  }


.s-b9edc646-8fb3-4b65-961d-3c0b974bda87 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
    
    
  }


.s-b9edc646-8fb3-4b65-961d-3c0b974bda87 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
    
    
  }


.s-b9edc646-8fb3-4b65-961d-3c0b974bda87 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
    
    
  }


.s-b9edc646-8fb3-4b65-961d-3c0b974bda87 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
    
    
  }


.s-b9edc646-8fb3-4b65-961d-3c0b974bda87 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9edc646-8fb3-4b65-961d-3c0b974bda87.shogun-image {
  box-sizing: border-box;
}




}
#s-e4cf90bc-7a5b-4155-8f78-a3d01d076af7 {
  min-height: 50px;
}








#s-e4cf90bc-7a5b-4155-8f78-a3d01d076af7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4cf90bc-7a5b-4155-8f78-a3d01d076af7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88e0ae3a-304a-4c52-994d-40acd0d105c8 {
  padding-left: 0%;
padding-right: 0%;
}

#s-2909ee78-7079-4ff4-b953-1fa3e428331e {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-2909ee78-7079-4ff4-b953-1fa3e428331e .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-2909ee78-7079-4ff4-b953-1fa3e428331e .shg-sld-nav-button.shg-sld-left,
#s-2909ee78-7079-4ff4-b953-1fa3e428331e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-dae92c65-982f-417d-8dbf-6f165dcd82dc {
  min-height: 50px;
}








#s-dae92c65-982f-417d-8dbf-6f165dcd82dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dae92c65-982f-417d-8dbf-6f165dcd82dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1 {
  text-align: center;
}







  img.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
    
    
  }


.s-1685e1af-a076-49cf-9c65-4de5db1c5db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
    
    
  }


.s-1685e1af-a076-49cf-9c65-4de5db1c5db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
    
    
  }


.s-1685e1af-a076-49cf-9c65-4de5db1c5db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
    
    
  }


.s-1685e1af-a076-49cf-9c65-4de5db1c5db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
    
    
  }


.s-1685e1af-a076-49cf-9c65-4de5db1c5db1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1685e1af-a076-49cf-9c65-4de5db1c5db1.shogun-image {
  box-sizing: border-box;
}




}
#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 {
  text-align: center;
}







  img.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
    
    
  }


.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 .shogun-image-content {
  
    align-items: center;
  
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shg-align-container {
  display: flex;
  justify-content: center
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
    
    
  }


.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 .shogun-image-content {
  
    align-items: center;
  
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shg-align-container {
  display: flex;
  justify-content: center
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
    
    
  }


.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 .shogun-image-content {
  
    align-items: center;
  
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shg-align-container {
  display: flex;
  justify-content: center
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
    
    
  }


.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 .shogun-image-content {
  
    align-items: center;
  
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shg-align-container {
  display: flex;
  justify-content: center
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
    
    
  }


.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609 .shogun-image-content {
  
    align-items: center;
  
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shg-align-container {
  display: flex;
  justify-content: center
}

.s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-506df18a-47c1-4ff0-8ba1-45ec8f02b609.shogun-image {
  box-sizing: border-box;
}




}
#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a {
  text-align: center;
}







  img.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
    
    
  }


.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a .shogun-image-content {
  
    align-items: center;
  
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
    
    
  }


.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a .shogun-image-content {
  
    align-items: center;
  
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
    
    
  }


.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a .shogun-image-content {
  
    align-items: center;
  
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
    
    
  }


.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a .shogun-image-content {
  
    align-items: center;
  
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
    
    
  }


.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a .shogun-image-content {
  
    align-items: center;
  
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2fc9345-4bc1-4ed1-a793-9af9e65c518a.shogun-image {
  box-sizing: border-box;
}




}
#s-6352929e-e001-4193-a2b9-d07977f323d3 {
  min-height: 50px;
}








#s-6352929e-e001-4193-a2b9-d07977f323d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6352929e-e001-4193-a2b9-d07977f323d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90ec02da-2e5e-4fa2-804f-d7e051e13f54 {
  padding-left: 0%;
padding-right: 0%;
}

#s-555eed09-9667-4e95-9f70-ba7d5871b401 {
  min-height: 50px;
}








#s-555eed09-9667-4e95-9f70-ba7d5871b401 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-555eed09-9667-4e95-9f70-ba7d5871b401.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-233eed38-7ce9-4ab3-9049-65612dde453a {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-233eed38-7ce9-4ab3-9049-65612dde453a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-233eed38-7ce9-4ab3-9049-65612dde453a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-233eed38-7ce9-4ab3-9049-65612dde453a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-233eed38-7ce9-4ab3-9049-65612dde453a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-332234e7-2d9a-46cc-bc5e-c49abfc56d19 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-332234e7-2d9a-46cc-bc5e-c49abfc56d19 .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-332234e7-2d9a-46cc-bc5e-c49abfc56d19 .shg-sld-nav-button.shg-sld-left,
#s-332234e7-2d9a-46cc-bc5e-c49abfc56d19 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 {
  text-align: center;
}







  img.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
    
    
  }


.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 .shogun-image-content {
  
    align-items: center;
  
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
    
    
  }


.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 .shogun-image-content {
  
    align-items: center;
  
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
    
    
  }


.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 .shogun-image-content {
  
    align-items: center;
  
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
    
    
  }


.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 .shogun-image-content {
  
    align-items: center;
  
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
    
    
  }


.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27 .shogun-image-content {
  
    align-items: center;
  
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98ce30cb-eff7-4b09-bf4a-03f7dc90cf27.shogun-image {
  box-sizing: border-box;
}




}
#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 {
  text-align: center;
}







  img.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
    
    
  }


.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
    
    
  }


.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
    
    
  }


.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
    
    
  }


.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
    
    
  }


.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4379fc6a-cf93-4496-96c5-c45d8ef65aa8.shogun-image {
  box-sizing: border-box;
}




}
#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 {
  text-align: center;
}







  img.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
    
    
  }


.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
    
    
  }


.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
    
    
  }


.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
    
    
  }


.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
    
    
  }


.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7ec72a3-289e-4ece-bfb5-c16fa1a47667.shogun-image {
  box-sizing: border-box;
}




}
#s-b89be842-5de8-4ea7-a78b-0e4161233147 {
  min-height: 50px;
}








#s-b89be842-5de8-4ea7-a78b-0e4161233147 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b89be842-5de8-4ea7-a78b-0e4161233147.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56292005-1f4f-46e7-9b7f-0ee42a270ff3 {
  padding-left: 0%;
padding-right: 0%;
}

#s-c02c89f5-67a9-4a37-bed9-b08aca49d2cf {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-c02c89f5-67a9-4a37-bed9-b08aca49d2cf .shg-sld-dot {
  background-color: rgba(216, 213, 213, 1);
}

#s-c02c89f5-67a9-4a37-bed9-b08aca49d2cf .shg-sld-nav-button.shg-sld-left,
#s-c02c89f5-67a9-4a37-bed9-b08aca49d2cf .shg-sld-nav-button.shg-sld-right {
  fill: rgba(216, 213, 213, 1);
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b {
  text-align: center;
}







  img.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
    
    
  }


.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b .shogun-image-content {
  
    align-items: center;
  
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
    
    
  }


.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b .shogun-image-content {
  
    align-items: center;
  
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
    
    
  }


.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b .shogun-image-content {
  
    align-items: center;
  
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
    
    
  }


.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b .shogun-image-content {
  
    align-items: center;
  
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
    
    
  }


.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b .shogun-image-content {
  
    align-items: center;
  
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-611ca085-60d4-4bb9-b695-c8c7d0a4b66b.shogun-image {
  box-sizing: border-box;
}




}
#s-1a34e5f5-8be7-41e0-8263-2924ef515480 {
  text-align: center;
}







  img.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
    
    
  }


.s-1a34e5f5-8be7-41e0-8263-2924ef515480 .shogun-image-content {
  
    align-items: center;
  
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
    
    
  }


.s-1a34e5f5-8be7-41e0-8263-2924ef515480 .shogun-image-content {
  
    align-items: center;
  
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
    
    
  }


.s-1a34e5f5-8be7-41e0-8263-2924ef515480 .shogun-image-content {
  
    align-items: center;
  
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
    
    
  }


.s-1a34e5f5-8be7-41e0-8263-2924ef515480 .shogun-image-content {
  
    align-items: center;
  
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
    
    
  }


.s-1a34e5f5-8be7-41e0-8263-2924ef515480 .shogun-image-content {
  
    align-items: center;
  
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a34e5f5-8be7-41e0-8263-2924ef515480.shogun-image {
  box-sizing: border-box;
}




}
#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd {
  text-align: center;
}







  img.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
    
    
  }


.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
    
    
  }


.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
    
    
  }


.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
    
    
  }


.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
    
    
  }


.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4be811c-3b8d-4cb2-92bf-1c86359803fd.shogun-image {
  box-sizing: border-box;
}




}
#s-f029fba1-439e-477e-8b56-a26a050b753c {
  min-height: 50px;
}








#s-f029fba1-439e-477e-8b56-a26a050b753c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f029fba1-439e-477e-8b56-a26a050b753c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-819c319d-4192-4b34-9861-c7e38a2f9eac {
  padding-left: 0%;
padding-right: 0%;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50 {
  text-align: center;
}







  img.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
    
    
  }


.s-bfeb4010-c840-4911-9b74-5411b3545a50 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
    
    
  }


.s-bfeb4010-c840-4911-9b74-5411b3545a50 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){





  img.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
    
    
  }


.s-bfeb4010-c840-4911-9b74-5411b3545a50 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){





  img.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
    
    
  }


.s-bfeb4010-c840-4911-9b74-5411b3545a50 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){





  img.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
    
    
  }


.s-bfeb4010-c840-4911-9b74-5411b3545a50 .shogun-image-content {
  
    align-items: center;
  
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bfeb4010-c840-4911-9b74-5411b3545a50.shogun-image {
  box-sizing: border-box;
}




}
#s-565717fa-d5d2-4993-9768-c2d5a3d9b734 {
  min-height: 50px;
}








#s-565717fa-d5d2-4993-9768-c2d5a3d9b734 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-565717fa-d5d2-4993-9768-c2d5a3d9b734.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5784353b-760e-451e-be85-7b35291d675b {
  padding-left: 0%;
padding-right: 0%;
}

#s-5a90e266-cf36-43d4-87e6-e8114a0b400f {
  min-height: 50px;
}








#s-5a90e266-cf36-43d4-87e6-e8114a0b400f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a90e266-cf36-43d4-87e6-e8114a0b400f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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