.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;
}

.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-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-bottom: 100px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
background-attachment: scroll;
}
@media (min-width: 768px) and (max-width: 991px){#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 {
  display: none;
}
#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6, #wrap-s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 { display: none !important; }}@media (max-width: 767px){#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 {
  display: none;
}
#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6, #wrap-s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 { display: none !important; }}







#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-86c6f8d4-18f0-4f16-a1f1-e4e6d0406bc6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-3bbf200d-302d-41f5-80f3-30823762c4f0 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
margin-top: 0px;
margin-left: 14%;
margin-bottom: 0px;
margin-right: 14%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 0);
}


  #s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
  #s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(244, 244, 244, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: Lato;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(244, 244, 244, 1);
}

#s-3bbf200d-302d-41f5-80f3-30823762c4f0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-a1b60a0d-5e90-44fa-9fe2-2f1dc3dfec14 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(255, 255, 255, 1);
}








#s-a1b60a0d-5e90-44fa-9fe2-2f1dc3dfec14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1b60a0d-5e90-44fa-9fe2-2f1dc3dfec14.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: "Serif";
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-dfe7ad1a-a326-485e-8f25-2594eaa40ed3 {
  margin-left: 19%;
margin-right: 19%;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-dfe7ad1a-a326-485e-8f25-2594eaa40ed3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Cormorant Garamond Bold";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



.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: #000000;
  font-family: "Serif";
  font-weight: 400;
}

.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: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: "Lato";
}

.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: #000000;
  font-family: "Serif";
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}

#s-fe27f672-8c8e-4291-b932-4729ee39c8ed {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
}

.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
   * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 0 var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
}

#slider-v3-s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f > .swiper-button-prev,
#slider-v3-s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f > .swiper-button-next svg,
#slider-v3-s-7a7d8a4d-0a8e-446e-bae5-8d5711478b6f > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

.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;
}

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

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

#s-9bd15b76-8759-4b8e-aac6-830bade0efbc {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-9bd15b76-8759-4b8e-aac6-830bade0efbc"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-9bd15b76-8759-4b8e-aac6-830bade0efbc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-9bd15b76-8759-4b8e-aac6-830bade0efbc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-9bd15b76-8759-4b8e-aac6-830bade0efbc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

.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-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  
  
  
  
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
    
    
  }


.s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-content {
  
    align-items: center;
  
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
      position: relative;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  
  
  
  
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
    
    
  }


.s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-content {
  
    align-items: center;
  
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
      position: relative;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  
  
  
  
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
    
    
  }


.s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-content {
  
    align-items: center;
  
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
      position: relative;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  
  
  
  
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
    
    
  }


.s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-content {
  
    align-items: center;
  
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
      position: relative;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  
  
  
  
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
    
    
  }


.s-36638c5b-449e-4a27-8afc-fbd829d69f7d .shogun-image-content {
  
    align-items: center;
  
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container {
      position: relative;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-36638c5b-449e-4a27-8afc-fbd829d69f7d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4254ab1f-205d-498f-87db-0ea19932f368 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  
  
  
  
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
    
    
  }


.s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
      position: relative;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  
  
  
  
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
    
    
  }


.s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
      position: relative;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  
  
  
  
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
    
    
  }


.s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
      position: relative;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  
  
  
  
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
    
    
  }


.s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
      position: relative;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  
  
  
  
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
    
    
  }


.s-1511f977-90ad-4d1a-ae36-68ab97f87c30 .shogun-image-content {
  
    align-items: center;
  
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container {
      position: relative;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1511f977-90ad-4d1a-ae36-68ab97f87c30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1c78c853-2816-4a52-b97a-a03e70e6fb0b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-56866249-12e4-462f-b8c8-81f7f7412a92 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-56866249-12e4-462f-b8c8-81f7f7412a92"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-56866249-12e4-462f-b8c8-81f7f7412a92"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-56866249-12e4-462f-b8c8-81f7f7412a92"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-56866249-12e4-462f-b8c8-81f7f7412a92"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-c6e7b196-6c9f-4233-a9e4-86495ab8f584 {
  min-height: 50px;
}








#s-c6e7b196-6c9f-4233-a9e4-86495ab8f584 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6e7b196-6c9f-4233-a9e4-86495ab8f584.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  
  
  
  
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
    
    
  }


.s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
      position: relative;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  
  
  
  
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
    
    
  }


.s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
      position: relative;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  
  
  
  
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
    
    
  }


.s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
      position: relative;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  
  
  
  
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
    
    
  }


.s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
      position: relative;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  
  
  
  
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
    
    
  }


.s-80f54faf-0e80-4b10-8e08-22cfa71dc766 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container {
      position: relative;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f54faf-0e80-4b10-8e08-22cfa71dc766 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b62ea61a-a407-4593-9ec0-ea6b93fae48e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-80c80e46-9670-4136-914c-75cc43c7f472 {
  min-height: 50px;
}








#s-80c80e46-9670-4136-914c-75cc43c7f472 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-80c80e46-9670-4136-914c-75cc43c7f472.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-159972db-815e-40bf-ac13-46868f2704eb {
  
  
  
  
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
    
    
  }


.s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-content {
  
    align-items: center;
  
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-159972db-815e-40bf-ac13-46868f2704eb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
      position: relative;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-159972db-815e-40bf-ac13-46868f2704eb {
  
  
  
  
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
    
    
  }


.s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-content {
  
    align-items: center;
  
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-159972db-815e-40bf-ac13-46868f2704eb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
      position: relative;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-159972db-815e-40bf-ac13-46868f2704eb {
  
  
  
  
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
    
    
  }


.s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-content {
  
    align-items: center;
  
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-159972db-815e-40bf-ac13-46868f2704eb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
      position: relative;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-159972db-815e-40bf-ac13-46868f2704eb {
  
  
  
  
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
    
    
  }


.s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-content {
  
    align-items: center;
  
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-159972db-815e-40bf-ac13-46868f2704eb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
      position: relative;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-159972db-815e-40bf-ac13-46868f2704eb {
  
  
  
  
}

#s-159972db-815e-40bf-ac13-46868f2704eb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-159972db-815e-40bf-ac13-46868f2704eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
    
    
  }


.s-159972db-815e-40bf-ac13-46868f2704eb .shogun-image-content {
  
    align-items: center;
  
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-159972db-815e-40bf-ac13-46868f2704eb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container {
      position: relative;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-159972db-815e-40bf-ac13-46868f2704eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-69fc8252-8e7f-46b9-8b6d-f0ff4ce0caca {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-654c211b-41bc-4bba-906a-660202d7a299 {
  min-height: 50px;
}








#s-654c211b-41bc-4bba-906a-660202d7a299 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-654c211b-41bc-4bba-906a-660202d7a299.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  
  
  
  
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
    
    
  }


.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
      position: relative;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  
  
  
  
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
    
    
  }


.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
      position: relative;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  
  
  
  
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
    
    
  }


.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
      position: relative;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  
  
  
  
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
    
    
  }


.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
      position: relative;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  
  
  
  
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
    
    
  }


.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 .shogun-image-content {
  
    align-items: center;
  
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container {
      position: relative;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7f72be79-b52a-4fc6-bc6f-7c11b0693b88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-607c0856-9e91-436b-bbb8-ed91e035042b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  
  
  
  
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
    
    
  }


.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-content {
  
    align-items: center;
  
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
      position: relative;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  
  
  
  
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
    
    
  }


.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-content {
  
    align-items: center;
  
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
      position: relative;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  
  
  
  
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
    
    
  }


.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-content {
  
    align-items: center;
  
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
      position: relative;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  
  
  
  
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
    
    
  }


.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-content {
  
    align-items: center;
  
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
      position: relative;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  
  
  
  
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
    
    
  }


.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d .shogun-image-content {
  
    align-items: center;
  
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container {
      position: relative;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30b2c076-4e8a-4eed-b6ae-0c3fe6032c1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-14385b34-f99d-491d-8846-aa5989a01897 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  
  
  
  
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
    
    
  }


.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
      position: relative;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  
  
  
  
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
    
    
  }


.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
      position: relative;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  
  
  
  
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
    
    
  }


.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
      position: relative;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  
  
  
  
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
    
    
  }


.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
      position: relative;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  
  
  
  
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
    
    
  }


.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container {
      position: relative;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd9f3f13-5341-4a56-9f7e-117b57c9a0f1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-68b19c56-a926-4492-82ce-f9c2234ed73d {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-daecec9a-1a04-433f-bc80-17e18a62b7c7 {
  min-height: 50px;
}








#s-daecec9a-1a04-433f-bc80-17e18a62b7c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-daecec9a-1a04-433f-bc80-17e18a62b7c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  
  
  
  
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
    
    
  }


.s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c5db727c-e1e9-4768-82da-b7f58889b99e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
      position: relative;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  
  
  
  
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
    
    
  }


.s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c5db727c-e1e9-4768-82da-b7f58889b99e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
      position: relative;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  
  
  
  
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
    
    
  }


.s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c5db727c-e1e9-4768-82da-b7f58889b99e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
      position: relative;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  
  
  
  
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
    
    
  }


.s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c5db727c-e1e9-4768-82da-b7f58889b99e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
      position: relative;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  
  
  
  
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c5db727c-e1e9-4768-82da-b7f58889b99e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
    
    
  }


.s-c5db727c-e1e9-4768-82da-b7f58889b99e .shogun-image-content {
  
    align-items: center;
  
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c5db727c-e1e9-4768-82da-b7f58889b99e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container {
      position: relative;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c5db727c-e1e9-4768-82da-b7f58889b99e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e63e42d1-21a5-419b-b5a2-97e77b382ce8 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-161f6b7b-68b7-446e-84ad-c67a1045acdc {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-161f6b7b-68b7-446e-84ad-c67a1045acdc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-161f6b7b-68b7-446e-84ad-c67a1045acdc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-161f6b7b-68b7-446e-84ad-c67a1045acdc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-161f6b7b-68b7-446e-84ad-c67a1045acdc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f5628f2a-b4b1-4202-9e14-659b24887202 {
  min-height: 50px;
}








#s-f5628f2a-b4b1-4202-9e14-659b24887202 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5628f2a-b4b1-4202-9e14-659b24887202.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  
  
  
  
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
    
    
  }


.s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b910dfa-a21a-434a-8604-845de0c22d3d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
      position: relative;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  
  
  
  
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
    
    
  }


.s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b910dfa-a21a-434a-8604-845de0c22d3d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
      position: relative;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  
  
  
  
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
    
    
  }


.s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b910dfa-a21a-434a-8604-845de0c22d3d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
      position: relative;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  
  
  
  
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
    
    
  }


.s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b910dfa-a21a-434a-8604-845de0c22d3d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
      position: relative;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  
  
  
  
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b910dfa-a21a-434a-8604-845de0c22d3d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
    
    
  }


.s-2b910dfa-a21a-434a-8604-845de0c22d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b910dfa-a21a-434a-8604-845de0c22d3d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container {
      position: relative;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b910dfa-a21a-434a-8604-845de0c22d3d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cc4e9e11-fd79-43a1-b135-3b6972542f43 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-f0949908-cc2c-4027-a2fd-1c976cd6d49e {
  min-height: 50px;
}








#s-f0949908-cc2c-4027-a2fd-1c976cd6d49e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0949908-cc2c-4027-a2fd-1c976cd6d49e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-836beb80-262e-4084-85c5-7107d24c576b {
  
  
  
  
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
    
    
  }


.s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-content {
  
    align-items: center;
  
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-836beb80-262e-4084-85c5-7107d24c576b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
      position: relative;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-836beb80-262e-4084-85c5-7107d24c576b {
  
  
  
  
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
    
    
  }


.s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-content {
  
    align-items: center;
  
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-836beb80-262e-4084-85c5-7107d24c576b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
      position: relative;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-836beb80-262e-4084-85c5-7107d24c576b {
  
  
  
  
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
    
    
  }


.s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-content {
  
    align-items: center;
  
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-836beb80-262e-4084-85c5-7107d24c576b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
      position: relative;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-836beb80-262e-4084-85c5-7107d24c576b {
  
  
  
  
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
    
    
  }


.s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-content {
  
    align-items: center;
  
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-836beb80-262e-4084-85c5-7107d24c576b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
      position: relative;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-836beb80-262e-4084-85c5-7107d24c576b {
  
  
  
  
}

#s-836beb80-262e-4084-85c5-7107d24c576b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-836beb80-262e-4084-85c5-7107d24c576b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
    
    
  }


.s-836beb80-262e-4084-85c5-7107d24c576b .shogun-image-content {
  
    align-items: center;
  
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-836beb80-262e-4084-85c5-7107d24c576b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container {
      position: relative;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-836beb80-262e-4084-85c5-7107d24c576b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-011cc0d2-6542-4e7d-afc7-249ffd6fedf3 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-aff8be33-7eb3-40ac-a4ea-ab675bb36ce3 {
  min-height: 50px;
}








#s-aff8be33-7eb3-40ac-a4ea-ab675bb36ce3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aff8be33-7eb3-40ac-a4ea-ab675bb36ce3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  
  
  
  
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
    
    
  }


.s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
      position: relative;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  
  
  
  
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
    
    
  }


.s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
      position: relative;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  
  
  
  
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
    
    
  }


.s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
      position: relative;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  
  
  
  
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
    
    
  }


.s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
      position: relative;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  
  
  
  
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
    
    
  }


.s-cdb36730-a72d-48c2-acf7-c70470d669d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container {
      position: relative;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cdb36730-a72d-48c2-acf7-c70470d669d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0a054f7c-9af9-4406-b0a0-34591934333d {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-21be4c2b-f49d-4db1-9321-59931015711f {
  
  
  
  
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
    
    
  }


.s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-content {
  
    align-items: center;
  
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-21be4c2b-f49d-4db1-9321-59931015711f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
      position: relative;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-21be4c2b-f49d-4db1-9321-59931015711f {
  
  
  
  
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
    
    
  }


.s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-content {
  
    align-items: center;
  
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-21be4c2b-f49d-4db1-9321-59931015711f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
      position: relative;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-21be4c2b-f49d-4db1-9321-59931015711f {
  
  
  
  
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
    
    
  }


.s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-content {
  
    align-items: center;
  
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-21be4c2b-f49d-4db1-9321-59931015711f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
      position: relative;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-21be4c2b-f49d-4db1-9321-59931015711f {
  
  
  
  
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
    
    
  }


.s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-content {
  
    align-items: center;
  
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-21be4c2b-f49d-4db1-9321-59931015711f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
      position: relative;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-21be4c2b-f49d-4db1-9321-59931015711f {
  
  
  
  
}

#s-21be4c2b-f49d-4db1-9321-59931015711f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-21be4c2b-f49d-4db1-9321-59931015711f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
    
    
  }


.s-21be4c2b-f49d-4db1-9321-59931015711f .shogun-image-content {
  
    align-items: center;
  
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-21be4c2b-f49d-4db1-9321-59931015711f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container {
      position: relative;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-21be4c2b-f49d-4db1-9321-59931015711f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b4808fdf-ef51-4040-ae02-a5b1d9d91e3c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  
  
  
  
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
    
    
  }


.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-content {
  
    align-items: center;
  
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
      position: relative;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  
  
  
  
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
    
    
  }


.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-content {
  
    align-items: center;
  
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
      position: relative;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  
  
  
  
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
    
    
  }


.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-content {
  
    align-items: center;
  
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
      position: relative;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  
  
  
  
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
    
    
  }


.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-content {
  
    align-items: center;
  
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
      position: relative;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  
  
  
  
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
    
    
  }


.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c .shogun-image-content {
  
    align-items: center;
  
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container {
      position: relative;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7805b6bf-0b48-4c03-ad3c-1f0c8aa9b34c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bff92c0e-7d4e-45d3-b173-9f23a8cbdbfb {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-db39c932-b82e-41bb-91ec-0a0758e14efa {
  min-height: 50px;
}








#s-db39c932-b82e-41bb-91ec-0a0758e14efa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db39c932-b82e-41bb-91ec-0a0758e14efa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  
  
  
  
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
    
    
  }


.s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-content {
  
    align-items: center;
  
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
      position: relative;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  
  
  
  
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
    
    
  }


.s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-content {
  
    align-items: center;
  
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
      position: relative;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  
  
  
  
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
    
    
  }


.s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-content {
  
    align-items: center;
  
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
      position: relative;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  
  
  
  
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
    
    
  }


.s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-content {
  
    align-items: center;
  
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
      position: relative;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  
  
  
  
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
    
    
  }


.s-ebea50e2-c465-4b53-bd60-72dd175cd958 .shogun-image-content {
  
    align-items: center;
  
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container {
      position: relative;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ebea50e2-c465-4b53-bd60-72dd175cd958 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ff5c0382-68cc-4233-9118-422e677a6b65 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-c9ac5054-5967-4d2e-9861-283dfcc3b906 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-c9ac5054-5967-4d2e-9861-283dfcc3b906"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c9ac5054-5967-4d2e-9861-283dfcc3b906"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-c9ac5054-5967-4d2e-9861-283dfcc3b906"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-c9ac5054-5967-4d2e-9861-283dfcc3b906"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-cb66fb60-2f5f-4d4b-ac0a-e377f3dbceec {
  min-height: 50px;
}








#s-cb66fb60-2f5f-4d4b-ac0a-e377f3dbceec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb66fb60-2f5f-4d4b-ac0a-e377f3dbceec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ae707205-cea8-44eb-a756-aed10002a258 {
  
  
  
  
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
    
    
  }


.s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae707205-cea8-44eb-a756-aed10002a258 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
      position: relative;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ae707205-cea8-44eb-a756-aed10002a258 {
  
  
  
  
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
    
    
  }


.s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae707205-cea8-44eb-a756-aed10002a258 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
      position: relative;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae707205-cea8-44eb-a756-aed10002a258 {
  
  
  
  
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
    
    
  }


.s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae707205-cea8-44eb-a756-aed10002a258 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
      position: relative;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae707205-cea8-44eb-a756-aed10002a258 {
  
  
  
  
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
    
    
  }


.s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae707205-cea8-44eb-a756-aed10002a258 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
      position: relative;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae707205-cea8-44eb-a756-aed10002a258 {
  
  
  
  
}

#s-ae707205-cea8-44eb-a756-aed10002a258 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae707205-cea8-44eb-a756-aed10002a258 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
    
    
  }


.s-ae707205-cea8-44eb-a756-aed10002a258 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae707205-cea8-44eb-a756-aed10002a258 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container {
      position: relative;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae707205-cea8-44eb-a756-aed10002a258 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-42e82801-4cf5-494e-85e6-bf5e85be397e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-1855be7d-a16a-4731-a1d0-379818816d43 {
  min-height: 50px;
}








#s-1855be7d-a16a-4731-a1d0-379818816d43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1855be7d-a16a-4731-a1d0-379818816d43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  
  
  
  
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
    
    
  }


.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
      position: relative;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  
  
  
  
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
    
    
  }


.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
      position: relative;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  
  
  
  
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
    
    
  }


.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
      position: relative;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  
  
  
  
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
    
    
  }


.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
      position: relative;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  
  
  
  
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
    
    
  }


.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container {
      position: relative;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8efc286d-21d1-489a-b92a-b61ef1fc4db7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f962e2d1-ac35-4a97-8132-857e30429245 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-185e57c5-0f3c-4a09-bfa0-ac9f52f69d90 {
  min-height: 50px;
}








#s-185e57c5-0f3c-4a09-bfa0-ac9f52f69d90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-185e57c5-0f3c-4a09-bfa0-ac9f52f69d90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-9a476bea-58b2-4568-815c-291214e4878b {
  
  
  
  
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
    
    
  }


.s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-content {
  
    align-items: center;
  
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a476bea-58b2-4568-815c-291214e4878b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
      position: relative;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-9a476bea-58b2-4568-815c-291214e4878b {
  
  
  
  
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
    
    
  }


.s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-content {
  
    align-items: center;
  
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a476bea-58b2-4568-815c-291214e4878b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
      position: relative;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9a476bea-58b2-4568-815c-291214e4878b {
  
  
  
  
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
    
    
  }


.s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-content {
  
    align-items: center;
  
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a476bea-58b2-4568-815c-291214e4878b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
      position: relative;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9a476bea-58b2-4568-815c-291214e4878b {
  
  
  
  
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
    
    
  }


.s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-content {
  
    align-items: center;
  
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a476bea-58b2-4568-815c-291214e4878b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
      position: relative;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9a476bea-58b2-4568-815c-291214e4878b {
  
  
  
  
}

#s-9a476bea-58b2-4568-815c-291214e4878b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a476bea-58b2-4568-815c-291214e4878b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
    
    
  }


.s-9a476bea-58b2-4568-815c-291214e4878b .shogun-image-content {
  
    align-items: center;
  
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a476bea-58b2-4568-815c-291214e4878b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container {
      position: relative;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a476bea-58b2-4568-815c-291214e4878b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f870502f-b1dc-4ef2-96dc-704aae409a36 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  
  
  
  
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
    
    
  }


.s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
      position: relative;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  
  
  
  
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
    
    
  }


.s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
      position: relative;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  
  
  
  
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
    
    
  }


.s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
      position: relative;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  
  
  
  
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
    
    
  }


.s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
      position: relative;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  
  
  
  
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
    
    
  }


.s-b6ad6df1-bffb-4616-999b-a3732eb273c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container {
      position: relative;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6ad6df1-bffb-4616-999b-a3732eb273c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9c81c85e-f62a-4620-9205-8432906e527e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  
  
  
  
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
    
    
  }


.s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
      position: relative;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  
  
  
  
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
    
    
  }


.s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
      position: relative;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  
  
  
  
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
    
    
  }


.s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
      position: relative;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  
  
  
  
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
    
    
  }


.s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
      position: relative;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  
  
  
  
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
    
    
  }


.s-a1f0ea83-01d1-4172-b720-648219c12fe1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container {
      position: relative;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1f0ea83-01d1-4172-b720-648219c12fe1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0d73fad5-c776-4963-97a3-c884935abd7e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-733b5a2c-99db-4bf8-9391-2e140c8cc364 {
  min-height: 50px;
}








#s-733b5a2c-99db-4bf8-9391-2e140c8cc364 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-733b5a2c-99db-4bf8-9391-2e140c8cc364.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-2b378229-3084-4b11-9738-0bcacf580c02 {
  
  
  
  
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
    
    
  }


.s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b378229-3084-4b11-9738-0bcacf580c02 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
      position: relative;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2b378229-3084-4b11-9738-0bcacf580c02 {
  
  
  
  
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
    
    
  }


.s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b378229-3084-4b11-9738-0bcacf580c02 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
      position: relative;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b378229-3084-4b11-9738-0bcacf580c02 {
  
  
  
  
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
    
    
  }


.s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b378229-3084-4b11-9738-0bcacf580c02 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
      position: relative;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b378229-3084-4b11-9738-0bcacf580c02 {
  
  
  
  
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
    
    
  }


.s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b378229-3084-4b11-9738-0bcacf580c02 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
      position: relative;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b378229-3084-4b11-9738-0bcacf580c02 {
  
  
  
  
}

#s-2b378229-3084-4b11-9738-0bcacf580c02 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b378229-3084-4b11-9738-0bcacf580c02 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
    
    
  }


.s-2b378229-3084-4b11-9738-0bcacf580c02 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b378229-3084-4b11-9738-0bcacf580c02 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container {
      position: relative;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b378229-3084-4b11-9738-0bcacf580c02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a19f7dad-ce56-433c-b1cb-51eb1ef9d00c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-abbe28f6-8c3e-4183-a381-e75855b537a4 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-abbe28f6-8c3e-4183-a381-e75855b537a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-abbe28f6-8c3e-4183-a381-e75855b537a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-02812c3e-e5fc-49a4-9941-6aa2e67d5414 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-02812c3e-e5fc-49a4-9941-6aa2e67d5414 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-1ba5663f-9f00-4304-b462-25a0046a354a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 16%;
padding-bottom: 0px;
padding-right: 16%;
}

#s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
}

#slider-v3-s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 > .swiper-button-prev,
#slider-v3-s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 > .swiper-button-next svg,
#slider-v3-s-bbb94b12-5ba5-4393-b469-cbe9d9d5df97 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-6823a7f3-e940-4ddf-b452-d190326c4714 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-6823a7f3-e940-4ddf-b452-d190326c4714"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-6823a7f3-e940-4ddf-b452-d190326c4714"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-6823a7f3-e940-4ddf-b452-d190326c4714"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-6823a7f3-e940-4ddf-b452-d190326c4714"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  
  
  
  
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
    
    
  }


.s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c07700e-023d-442b-b50c-d4691cd8de77 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
      position: relative;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  
  
  
  
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
    
    
  }


.s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c07700e-023d-442b-b50c-d4691cd8de77 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
      position: relative;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  
  
  
  
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
    
    
  }


.s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c07700e-023d-442b-b50c-d4691cd8de77 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
      position: relative;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  
  
  
  
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
    
    
  }


.s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c07700e-023d-442b-b50c-d4691cd8de77 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
      position: relative;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  
  
  
  
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3c07700e-023d-442b-b50c-d4691cd8de77 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
    
    
  }


.s-3c07700e-023d-442b-b50c-d4691cd8de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3c07700e-023d-442b-b50c-d4691cd8de77 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container {
      position: relative;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3c07700e-023d-442b-b50c-d4691cd8de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b3738b44-be48-4363-96c8-b6cd267f8c90 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  
  
  
  
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
    
    
  }


.s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-content {
  
    align-items: center;
  
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
      position: relative;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  
  
  
  
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
    
    
  }


.s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-content {
  
    align-items: center;
  
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
      position: relative;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  
  
  
  
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
    
    
  }


.s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-content {
  
    align-items: center;
  
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
      position: relative;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  
  
  
  
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
    
    
  }


.s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-content {
  
    align-items: center;
  
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
      position: relative;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  
  
  
  
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
    
    
  }


.s-12b81f46-f9c3-4a27-9933-f848b851d3fe .shogun-image-content {
  
    align-items: center;
  
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shg-align-container {
  display: flex;
  justify-content: center
}

.s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container {
      position: relative;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-12b81f46-f9c3-4a27-9933-f848b851d3fe img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b3118b1b-1086-418f-9d54-7312ed6d8e7c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-d338c1cc-5d0e-49ec-82f8-9b33bcb44068 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-d338c1cc-5d0e-49ec-82f8-9b33bcb44068"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d338c1cc-5d0e-49ec-82f8-9b33bcb44068"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-d338c1cc-5d0e-49ec-82f8-9b33bcb44068"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-d338c1cc-5d0e-49ec-82f8-9b33bcb44068"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-15600c34-8758-485f-8ff6-57745fd14a9f {
  min-height: 50px;
}








#s-15600c34-8758-485f-8ff6-57745fd14a9f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-15600c34-8758-485f-8ff6-57745fd14a9f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  
  
  
  
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
    
    
  }


.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-content {
  
    align-items: center;
  
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
      position: relative;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  
  
  
  
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
    
    
  }


.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-content {
  
    align-items: center;
  
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
      position: relative;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  
  
  
  
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
    
    
  }


.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-content {
  
    align-items: center;
  
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
      position: relative;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  
  
  
  
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
    
    
  }


.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-content {
  
    align-items: center;
  
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
      position: relative;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  
  
  
  
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
    
    
  }


.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 .shogun-image-content {
  
    align-items: center;
  
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container {
      position: relative;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f020ac4b-f94b-4d06-8821-b213a8bf5ea1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0ed15da1-e8b6-43b0-9d6e-417ce6f02ad4 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-92fab817-5293-4bbb-bf2a-2e19b12c8201 {
  min-height: 50px;
}








#s-92fab817-5293-4bbb-bf2a-2e19b12c8201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-92fab817-5293-4bbb-bf2a-2e19b12c8201.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  
  
  
  
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
    
    
  }


.s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
      position: relative;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  
  
  
  
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
    
    
  }


.s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
      position: relative;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  
  
  
  
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
    
    
  }


.s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
      position: relative;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  
  
  
  
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
    
    
  }


.s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
      position: relative;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  
  
  
  
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
    
    
  }


.s-d9e591d6-a66c-43e0-979b-1b18f6924a81 .shogun-image-content {
  
    align-items: center;
  
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container {
      position: relative;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9e591d6-a66c-43e0-979b-1b18f6924a81 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-18c14238-6c99-48a0-b2db-763b7849c785 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-074e9318-82ad-404b-aab2-dd540044da0b {
  min-height: 50px;
}








#s-074e9318-82ad-404b-aab2-dd540044da0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-074e9318-82ad-404b-aab2-dd540044da0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  
  
  
  
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
    
    
  }


.s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
      position: relative;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  
  
  
  
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
    
    
  }


.s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
      position: relative;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  
  
  
  
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
    
    
  }


.s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
      position: relative;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  
  
  
  
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
    
    
  }


.s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
      position: relative;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  
  
  
  
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
    
    
  }


.s-cc21af11-f0c4-41b9-ba68-de0082d86020 .shogun-image-content {
  
    align-items: center;
  
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container {
      position: relative;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cc21af11-f0c4-41b9-ba68-de0082d86020 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c7acc606-3dce-475d-aea4-c43932a7e82e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  
  
  
  
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
    
    
  }


.s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-content {
  
    align-items: center;
  
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
      position: relative;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  
  
  
  
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
    
    
  }


.s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-content {
  
    align-items: center;
  
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
      position: relative;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  
  
  
  
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
    
    
  }


.s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-content {
  
    align-items: center;
  
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
      position: relative;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  
  
  
  
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
    
    
  }


.s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-content {
  
    align-items: center;
  
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
      position: relative;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  
  
  
  
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
    
    
  }


.s-a82b35e1-603b-4745-8c3d-6bce2b521184 .shogun-image-content {
  
    align-items: center;
  
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container {
      position: relative;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a82b35e1-603b-4745-8c3d-6bce2b521184 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e87f02e8-3eca-4143-b5b8-0fa54fd8c269 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-e972ac36-ab84-4a73-a30b-d9eb5c01b862 {
  min-height: 50px;
}








#s-e972ac36-ab84-4a73-a30b-d9eb5c01b862 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e972ac36-ab84-4a73-a30b-d9eb5c01b862.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  
  
  
  
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
    
    
  }


.s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
      position: relative;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  
  
  
  
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
    
    
  }


.s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
      position: relative;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  
  
  
  
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
    
    
  }


.s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
      position: relative;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  
  
  
  
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
    
    
  }


.s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
      position: relative;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  
  
  
  
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
    
    
  }


.s-ed5714ee-4e71-4d12-b06e-86d302aeef65 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container {
      position: relative;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed5714ee-4e71-4d12-b06e-86d302aeef65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-63005e16-a2b0-4c46-8eb9-73ddfc146e2e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-b290c18a-2810-4d34-bbee-6e140ae0a85f {
  min-height: 50px;
}








#s-b290c18a-2810-4d34-bbee-6e140ae0a85f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b290c18a-2810-4d34-bbee-6e140ae0a85f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-42488980-a510-45f9-9301-51d871602eeb {
  
  
  
  
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
    
    
  }


.s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-content {
  
    align-items: center;
  
}

.s-42488980-a510-45f9-9301-51d871602eeb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42488980-a510-45f9-9301-51d871602eeb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
      position: relative;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-42488980-a510-45f9-9301-51d871602eeb {
  
  
  
  
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
    
    
  }


.s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-content {
  
    align-items: center;
  
}

.s-42488980-a510-45f9-9301-51d871602eeb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42488980-a510-45f9-9301-51d871602eeb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
      position: relative;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42488980-a510-45f9-9301-51d871602eeb {
  
  
  
  
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
    
    
  }


.s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-content {
  
    align-items: center;
  
}

.s-42488980-a510-45f9-9301-51d871602eeb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42488980-a510-45f9-9301-51d871602eeb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
      position: relative;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42488980-a510-45f9-9301-51d871602eeb {
  
  
  
  
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
    
    
  }


.s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-content {
  
    align-items: center;
  
}

.s-42488980-a510-45f9-9301-51d871602eeb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42488980-a510-45f9-9301-51d871602eeb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
      position: relative;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42488980-a510-45f9-9301-51d871602eeb {
  
  
  
  
}

#s-42488980-a510-45f9-9301-51d871602eeb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42488980-a510-45f9-9301-51d871602eeb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
    
    
  }


.s-42488980-a510-45f9-9301-51d871602eeb .shogun-image-content {
  
    align-items: center;
  
}

.s-42488980-a510-45f9-9301-51d871602eeb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42488980-a510-45f9-9301-51d871602eeb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42488980-a510-45f9-9301-51d871602eeb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container {
      position: relative;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42488980-a510-45f9-9301-51d871602eeb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42488980-a510-45f9-9301-51d871602eeb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7879cb75-7ece-49fc-bb84-a95eb3ef9d98 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-5521e22d-698a-4952-bb3a-e7b400e1c7d4 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-5521e22d-698a-4952-bb3a-e7b400e1c7d4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5521e22d-698a-4952-bb3a-e7b400e1c7d4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-5521e22d-698a-4952-bb3a-e7b400e1c7d4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-5521e22d-698a-4952-bb3a-e7b400e1c7d4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  
  
  
  
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
    
    
  }


.s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-content {
  
    align-items: center;
  
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
      position: relative;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  
  
  
  
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
    
    
  }


.s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-content {
  
    align-items: center;
  
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
      position: relative;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  
  
  
  
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
    
    
  }


.s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-content {
  
    align-items: center;
  
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
      position: relative;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  
  
  
  
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
    
    
  }


.s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-content {
  
    align-items: center;
  
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
      position: relative;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  
  
  
  
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
    
    
  }


.s-ed31a8f8-9870-40c1-9efc-0958a19b879d .shogun-image-content {
  
    align-items: center;
  
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container {
      position: relative;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ed31a8f8-9870-40c1-9efc-0958a19b879d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f14b87dd-80c1-41f3-8c5b-f2946688fa85 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  
  
  
  
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
    
    
  }


.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-content {
  
    align-items: center;
  
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
      position: relative;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  
  
  
  
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
    
    
  }


.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-content {
  
    align-items: center;
  
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
      position: relative;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  
  
  
  
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
    
    
  }


.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-content {
  
    align-items: center;
  
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
      position: relative;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  
  
  
  
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
    
    
  }


.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-content {
  
    align-items: center;
  
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
      position: relative;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  
  
  
  
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
    
    
  }


.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df .shogun-image-content {
  
    align-items: center;
  
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container {
      position: relative;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0866796a-5ff0-4a1f-9b23-ae3631afa8df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-42b591c3-c11a-47f6-b18f-29a553e2f0b6 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-52175d37-7f7a-47e3-89d8-0a308277f733 {
  min-height: 50px;
}








#s-52175d37-7f7a-47e3-89d8-0a308277f733 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52175d37-7f7a-47e3-89d8-0a308277f733.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-23cd9b95-b064-433a-802a-8a924c80c617 {
  
  
  
  
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
    
    
  }


.s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-content {
  
    align-items: center;
  
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23cd9b95-b064-433a-802a-8a924c80c617 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
      position: relative;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-23cd9b95-b064-433a-802a-8a924c80c617 {
  
  
  
  
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
    
    
  }


.s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-content {
  
    align-items: center;
  
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23cd9b95-b064-433a-802a-8a924c80c617 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
      position: relative;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23cd9b95-b064-433a-802a-8a924c80c617 {
  
  
  
  
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
    
    
  }


.s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-content {
  
    align-items: center;
  
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23cd9b95-b064-433a-802a-8a924c80c617 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
      position: relative;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23cd9b95-b064-433a-802a-8a924c80c617 {
  
  
  
  
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
    
    
  }


.s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-content {
  
    align-items: center;
  
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23cd9b95-b064-433a-802a-8a924c80c617 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
      position: relative;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23cd9b95-b064-433a-802a-8a924c80c617 {
  
  
  
  
}

#s-23cd9b95-b064-433a-802a-8a924c80c617 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23cd9b95-b064-433a-802a-8a924c80c617 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
    
    
  }


.s-23cd9b95-b064-433a-802a-8a924c80c617 .shogun-image-content {
  
    align-items: center;
  
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23cd9b95-b064-433a-802a-8a924c80c617 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container {
      position: relative;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23cd9b95-b064-433a-802a-8a924c80c617 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-12c55501-670a-432a-9d32-dafb33f0e941 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-de2d9e5a-941b-40d6-9408-38417854d519 {
  
  
  
  
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
    
    
  }


.s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-content {
  
    align-items: center;
  
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de2d9e5a-941b-40d6-9408-38417854d519 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
      position: relative;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-de2d9e5a-941b-40d6-9408-38417854d519 {
  
  
  
  
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
    
    
  }


.s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-content {
  
    align-items: center;
  
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de2d9e5a-941b-40d6-9408-38417854d519 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
      position: relative;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-de2d9e5a-941b-40d6-9408-38417854d519 {
  
  
  
  
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
    
    
  }


.s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-content {
  
    align-items: center;
  
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de2d9e5a-941b-40d6-9408-38417854d519 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
      position: relative;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-de2d9e5a-941b-40d6-9408-38417854d519 {
  
  
  
  
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
    
    
  }


.s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-content {
  
    align-items: center;
  
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de2d9e5a-941b-40d6-9408-38417854d519 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
      position: relative;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-de2d9e5a-941b-40d6-9408-38417854d519 {
  
  
  
  
}

#s-de2d9e5a-941b-40d6-9408-38417854d519 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-de2d9e5a-941b-40d6-9408-38417854d519 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
    
    
  }


.s-de2d9e5a-941b-40d6-9408-38417854d519 .shogun-image-content {
  
    align-items: center;
  
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-de2d9e5a-941b-40d6-9408-38417854d519 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container {
      position: relative;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-de2d9e5a-941b-40d6-9408-38417854d519 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-47b509ff-f3c5-4d34-8c5e-305556413a93 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  
  
  
  
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
    
    
  }


.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-content {
  
    align-items: center;
  
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
      position: relative;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  
  
  
  
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
    
    
  }


.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-content {
  
    align-items: center;
  
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
      position: relative;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  
  
  
  
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
    
    
  }


.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-content {
  
    align-items: center;
  
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
      position: relative;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  
  
  
  
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
    
    
  }


.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-content {
  
    align-items: center;
  
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
      position: relative;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  
  
  
  
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
    
    
  }


.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab .shogun-image-content {
  
    align-items: center;
  
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container {
      position: relative;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d89f675-b29f-4b9d-bc15-1a69a99512ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f27b0762-87e5-4147-bd6f-dcba871b64e6 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-2c210bf8-493c-4152-8567-1e69c0e16b94 {
  min-height: 50px;
}








#s-2c210bf8-493c-4152-8567-1e69c0e16b94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c210bf8-493c-4152-8567-1e69c0e16b94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  
  
  
  
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
    
    
  }


.s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
      position: relative;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  
  
  
  
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
    
    
  }


.s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
      position: relative;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  
  
  
  
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
    
    
  }


.s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
      position: relative;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  
  
  
  
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
    
    
  }


.s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
      position: relative;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  
  
  
  
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
    
    
  }


.s-73236261-4dfc-4c56-8c65-3429e4037aa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container {
      position: relative;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-73236261-4dfc-4c56-8c65-3429e4037aa3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a519cd6c-058b-4898-a374-c44a2b1e90f7 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-5e96e252-4bf6-4203-94ac-c9ca2a85dbc1 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
background-color: rgba(255, 255, 255, 1);
}








#s-5e96e252-4bf6-4203-94ac-c9ca2a85dbc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5e96e252-4bf6-4203-94ac-c9ca2a85dbc1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce616f04-0301-4e45-b871-3057974fe518 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 3px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-ce616f04-0301-4e45-b871-3057974fe518 {
  display: none;
}
#s-ce616f04-0301-4e45-b871-3057974fe518, #wrap-s-ce616f04-0301-4e45-b871-3057974fe518 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ce616f04-0301-4e45-b871-3057974fe518 {
  display: none;
}
#s-ce616f04-0301-4e45-b871-3057974fe518, #wrap-s-ce616f04-0301-4e45-b871-3057974fe518 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ce616f04-0301-4e45-b871-3057974fe518 {
  display: none;
}
#s-ce616f04-0301-4e45-b871-3057974fe518, #wrap-s-ce616f04-0301-4e45-b871-3057974fe518 { display: none !important; }}
#s-7fa7cd4f-e66b-4e4c-a838-d60be5a58793 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-7fa7cd4f-e66b-4e4c-a838-d60be5a58793 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 0px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a {
  
}
}@media (max-width: 767px){#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a {
  display: none;
}
#s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a, #wrap-s-fe1a9ebb-e022-4c2d-9b5a-f7e86026551a { display: none !important; }}
#s-a285b548-60a3-45ba-8b62-395bbb68a0fe {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: none;
}

#slider-v3-s-a285b548-60a3-45ba-8b62-395bbb68a0fe {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-a285b548-60a3-45ba-8b62-395bbb68a0fe > .swiper-button-prev,
#slider-v3-s-a285b548-60a3-45ba-8b62-395bbb68a0fe > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-a285b548-60a3-45ba-8b62-395bbb68a0fe > .swiper-button-next svg,
#slider-v3-s-a285b548-60a3-45ba-8b62-395bbb68a0fe > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-2e854cca-9418-40af-9e75-f973d5a923ad {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-2e854cca-9418-40af-9e75-f973d5a923ad"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2e854cca-9418-40af-9e75-f973d5a923ad"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-2e854cca-9418-40af-9e75-f973d5a923ad"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e854cca-9418-40af-9e75-f973d5a923ad"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-b0fc461d-38ee-4c81-b8a8-08dbd0762d83 {
  min-height: 50px;
}








#s-b0fc461d-38ee-4c81-b8a8-08dbd0762d83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0fc461d-38ee-4c81-b8a8-08dbd0762d83.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  
  
  
  
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
    
    
  }


.s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1c30f9e-9b67-483a-9432-1583701935c5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
      position: relative;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  
  
  
  
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
    
    
  }


.s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1c30f9e-9b67-483a-9432-1583701935c5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
      position: relative;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  
  
  
  
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
    
    
  }


.s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1c30f9e-9b67-483a-9432-1583701935c5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
      position: relative;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  
  
  
  
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
    
    
  }


.s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1c30f9e-9b67-483a-9432-1583701935c5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
      position: relative;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  
  
  
  
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f1c30f9e-9b67-483a-9432-1583701935c5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
    
    
  }


.s-f1c30f9e-9b67-483a-9432-1583701935c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f1c30f9e-9b67-483a-9432-1583701935c5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container {
      position: relative;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f1c30f9e-9b67-483a-9432-1583701935c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-94e49ce4-0d9a-4a0b-922b-8a47902bfa4b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  
  
  
  
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
    
    
  }


.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
      position: relative;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  
  
  
  
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
    
    
  }


.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
      position: relative;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  
  
  
  
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
    
    
  }


.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
      position: relative;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  
  
  
  
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
    
    
  }


.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
      position: relative;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  
  
  
  
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
    
    
  }


.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container {
      position: relative;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-366f2bfe-b0dd-48cb-a8a1-7b5166cf85d6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ce03b441-d88d-4c25-bd0e-bc366a426a66 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-637f6358-2a09-4462-8819-8d8ca1e7116a {
  min-height: 50px;
}








#s-637f6358-2a09-4462-8819-8d8ca1e7116a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-637f6358-2a09-4462-8819-8d8ca1e7116a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-c7494c97-2a11-4fd0-a240-854468280792 {
  
  
  
  
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
    
    
  }


.s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7494c97-2a11-4fd0-a240-854468280792 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
      position: relative;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c7494c97-2a11-4fd0-a240-854468280792 {
  
  
  
  
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
    
    
  }


.s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7494c97-2a11-4fd0-a240-854468280792 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
      position: relative;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c7494c97-2a11-4fd0-a240-854468280792 {
  
  
  
  
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
    
    
  }


.s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7494c97-2a11-4fd0-a240-854468280792 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
      position: relative;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c7494c97-2a11-4fd0-a240-854468280792 {
  
  
  
  
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
    
    
  }


.s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7494c97-2a11-4fd0-a240-854468280792 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
      position: relative;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c7494c97-2a11-4fd0-a240-854468280792 {
  
  
  
  
}

#s-c7494c97-2a11-4fd0-a240-854468280792 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7494c97-2a11-4fd0-a240-854468280792 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
    
    
  }


.s-c7494c97-2a11-4fd0-a240-854468280792 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7494c97-2a11-4fd0-a240-854468280792 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container {
      position: relative;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7494c97-2a11-4fd0-a240-854468280792 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-04d34071-4880-4989-8fdd-c8d8dd48daa8 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5ef84bff-b342-4c87-89c5-33313a481552 {
  
  
  
  
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
    
    
  }


.s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ef84bff-b342-4c87-89c5-33313a481552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
      position: relative;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5ef84bff-b342-4c87-89c5-33313a481552 {
  
  
  
  
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
    
    
  }


.s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ef84bff-b342-4c87-89c5-33313a481552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
      position: relative;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5ef84bff-b342-4c87-89c5-33313a481552 {
  
  
  
  
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
    
    
  }


.s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ef84bff-b342-4c87-89c5-33313a481552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
      position: relative;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5ef84bff-b342-4c87-89c5-33313a481552 {
  
  
  
  
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
    
    
  }


.s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ef84bff-b342-4c87-89c5-33313a481552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
      position: relative;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5ef84bff-b342-4c87-89c5-33313a481552 {
  
  
  
  
}

#s-5ef84bff-b342-4c87-89c5-33313a481552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5ef84bff-b342-4c87-89c5-33313a481552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
    
    
  }


.s-5ef84bff-b342-4c87-89c5-33313a481552 .shogun-image-content {
  
    align-items: center;
  
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5ef84bff-b342-4c87-89c5-33313a481552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container {
      position: relative;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5ef84bff-b342-4c87-89c5-33313a481552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a6a911f2-00bd-4e58-a9e5-f2bbe968f4ba {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  
  
  
  
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
    
    
  }


.s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
      position: relative;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  
  
  
  
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
    
    
  }


.s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
      position: relative;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  
  
  
  
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
    
    
  }


.s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
      position: relative;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  
  
  
  
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
    
    
  }


.s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
      position: relative;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  
  
  
  
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
    
    
  }


.s-05faf3f7-5aec-4af5-8409-856c1b6019e9 .shogun-image-content {
  
    align-items: center;
  
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container {
      position: relative;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05faf3f7-5aec-4af5-8409-856c1b6019e9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-13f36edf-2474-4658-a8c1-0aad69117f64 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-26dcc534-1d7a-4998-a6f9-8fb8afd7c32e {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-26dcc534-1d7a-4998-a6f9-8fb8afd7c32e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-26dcc534-1d7a-4998-a6f9-8fb8afd7c32e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-26dcc534-1d7a-4998-a6f9-8fb8afd7c32e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-26dcc534-1d7a-4998-a6f9-8fb8afd7c32e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-dcee89ec-a753-44f7-a558-49e6c4c32da6 {
  min-height: 50px;
}








#s-dcee89ec-a753-44f7-a558-49e6c4c32da6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dcee89ec-a753-44f7-a558-49e6c4c32da6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  
  
  
  
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
    
    
  }


.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-content {
  
    align-items: center;
  
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
      position: relative;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  
  
  
  
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
    
    
  }


.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-content {
  
    align-items: center;
  
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
      position: relative;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  
  
  
  
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
    
    
  }


.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-content {
  
    align-items: center;
  
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
      position: relative;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  
  
  
  
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
    
    
  }


.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-content {
  
    align-items: center;
  
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
      position: relative;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  
  
  
  
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
    
    
  }


.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f .shogun-image-content {
  
    align-items: center;
  
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container {
      position: relative;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29e5f164-3c39-4573-9ea4-5ba62dd5263f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6324088a-2103-4896-9768-873a2aad3ebf {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-fbb04d6c-3689-4a12-963e-2f21e1d43161 {
  min-height: 50px;
}








#s-fbb04d6c-3689-4a12-963e-2f21e1d43161 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbb04d6c-3689-4a12-963e-2f21e1d43161.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  
  
  
  
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
    
    
  }


.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-content {
  
    align-items: center;
  
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
      position: relative;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  
  
  
  
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
    
    
  }


.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-content {
  
    align-items: center;
  
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
      position: relative;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  
  
  
  
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
    
    
  }


.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-content {
  
    align-items: center;
  
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
      position: relative;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  
  
  
  
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
    
    
  }


.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-content {
  
    align-items: center;
  
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
      position: relative;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  
  
  
  
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
    
    
  }


.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e .shogun-image-content {
  
    align-items: center;
  
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container {
      position: relative;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb35506e-4fe0-4aba-a760-deb00c73dc3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b33a4afd-9d57-4e2b-90ce-3cccda20796b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-9bb01dba-1427-4dbd-abab-d6842e29c002 {
  min-height: 50px;
}








#s-9bb01dba-1427-4dbd-abab-d6842e29c002 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9bb01dba-1427-4dbd-abab-d6842e29c002.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  
  
  
  
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
    
    
  }


.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-content {
  
    align-items: center;
  
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
      position: relative;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  
  
  
  
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
    
    
  }


.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-content {
  
    align-items: center;
  
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
      position: relative;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  
  
  
  
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
    
    
  }


.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-content {
  
    align-items: center;
  
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
      position: relative;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  
  
  
  
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
    
    
  }


.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-content {
  
    align-items: center;
  
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
      position: relative;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  
  
  
  
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
    
    
  }


.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa .shogun-image-content {
  
    align-items: center;
  
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container {
      position: relative;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f86faac-b010-49ba-86ec-e1c81ecd07aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c87053b2-474f-47e6-97c5-70dc4844b4bc {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-f405d542-2cc6-4cfd-b882-4610b41f6ed9 {
  min-height: 50px;
}








#s-f405d542-2cc6-4cfd-b882-4610b41f6ed9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f405d542-2cc6-4cfd-b882-4610b41f6ed9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  
  
  
  
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
    
    
  }


.s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-content {
  
    align-items: center;
  
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0861d818-a390-4a0c-be28-5ee1c266b916 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
      position: relative;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  
  
  
  
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
    
    
  }


.s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-content {
  
    align-items: center;
  
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0861d818-a390-4a0c-be28-5ee1c266b916 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
      position: relative;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  
  
  
  
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
    
    
  }


.s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-content {
  
    align-items: center;
  
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0861d818-a390-4a0c-be28-5ee1c266b916 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
      position: relative;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  
  
  
  
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
    
    
  }


.s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-content {
  
    align-items: center;
  
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0861d818-a390-4a0c-be28-5ee1c266b916 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
      position: relative;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  
  
  
  
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0861d818-a390-4a0c-be28-5ee1c266b916 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
    
    
  }


.s-0861d818-a390-4a0c-be28-5ee1c266b916 .shogun-image-content {
  
    align-items: center;
  
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0861d818-a390-4a0c-be28-5ee1c266b916 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container {
      position: relative;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0861d818-a390-4a0c-be28-5ee1c266b916 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0dee9b97-8e3e-4615-9eb2-4ba3a3323040 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-f15d7112-fbde-453a-981d-07f8dda0b8cd {
  min-height: 50px;
}








#s-f15d7112-fbde-453a-981d-07f8dda0b8cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f15d7112-fbde-453a-981d-07f8dda0b8cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  max-width: 52px;
aspect-ratio: 105/244;
text-align: center;
}



.shg-image-margin-container-s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  
  
  
  
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
    
    
  }


.s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
      position: relative;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  
  
  
  
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
    
    
  }


.s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
      position: relative;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  
  
  
  
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
    
    
  }


.s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
      position: relative;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  
  
  
  
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
    
    
  }


.s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
      position: relative;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  
  
  
  
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
    
    
  }


.s-f77fe131-7a16-4aa7-ba11-93880e2617a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container {
      position: relative;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f77fe131-7a16-4aa7-ba11-93880e2617a3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bc6230f6-ce3e-440b-89a1-3c215b28f362 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-6384e0a9-bad7-4d6f-b4b3-334fd8450d94 {
  min-height: 50px;
}








#s-6384e0a9-bad7-4d6f-b4b3-334fd8450d94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6384e0a9-bad7-4d6f-b4b3-334fd8450d94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  
  
  
  
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
    
    
  }


.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
      position: relative;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  
  
  
  
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
    
    
  }


.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
      position: relative;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  
  
  
  
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
    
    
  }


.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
      position: relative;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  
  
  
  
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
    
    
  }


.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
      position: relative;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  
  
  
  
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
    
    
  }


.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 .shogun-image-content {
  
    align-items: center;
  
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container {
      position: relative;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9c8fccf4-a536-4e21-9a7e-bd4d54067279 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-766456e6-a5fb-4e22-8eb8-1e4ea9e9b6f2 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-e78a3f96-db02-4897-8218-7069c182274a {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-e78a3f96-db02-4897-8218-7069c182274a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e78a3f96-db02-4897-8218-7069c182274a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-e78a3f96-db02-4897-8218-7069c182274a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-e78a3f96-db02-4897-8218-7069c182274a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-a4bfb8b6-5aa4-4878-8b7d-f3be5ed6224d {
  min-height: 45px;
}








#s-a4bfb8b6-5aa4-4878-8b7d-f3be5ed6224d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a4bfb8b6-5aa4-4878-8b7d-f3be5ed6224d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  
  
  
  
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
    
    
  }


.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
      position: relative;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  
  
  
  
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
    
    
  }


.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
      position: relative;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  
  
  
  
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
    
    
  }


.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
      position: relative;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  
  
  
  
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
    
    
  }


.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
      position: relative;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  
  
  
  
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
    
    
  }


.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container {
      position: relative;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d4a243c-9a31-4426-8b5e-0dee1d073dd4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-43b18d66-0da3-4eca-a305-9d47713ace16 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-54cd1825-d49d-46fa-aa2a-640ad8b98291 {
  min-height: 45px;
}








#s-54cd1825-d49d-46fa-aa2a-640ad8b98291 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-54cd1825-d49d-46fa-aa2a-640ad8b98291.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  
  
  
  
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
    
    
  }


.s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
      position: relative;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  
  
  
  
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
    
    
  }


.s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
      position: relative;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  
  
  
  
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
    
    
  }


.s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
      position: relative;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  
  
  
  
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
    
    
  }


.s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
      position: relative;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  
  
  
  
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
    
    
  }


.s-e8bfbac5-019e-46df-80b1-838709cf6a3e .shogun-image-content {
  
    align-items: center;
  
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container {
      position: relative;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e8bfbac5-019e-46df-80b1-838709cf6a3e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-26e72523-8d8c-4ca7-80aa-c695ef806a1b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-9d19639f-4ae0-4a50-994e-3411414eadb4 {
  min-height: 45px;
}








#s-9d19639f-4ae0-4a50-994e-3411414eadb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9d19639f-4ae0-4a50-994e-3411414eadb4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  
  
  
  
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
    
    
  }


.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
      position: relative;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  
  
  
  
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
    
    
  }


.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
      position: relative;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  
  
  
  
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
    
    
  }


.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
      position: relative;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  
  
  
  
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
    
    
  }


.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
      position: relative;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  
  
  
  
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
    
    
  }


.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container {
      position: relative;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d7f5b72f-49f5-4bf7-b08c-047b85a90327 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c5059f2a-9642-4994-a902-6b8a0b06aaf1 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  
  
  
  
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
    
    
  }


.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-content {
  
    align-items: center;
  
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
      position: relative;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  
  
  
  
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
    
    
  }


.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-content {
  
    align-items: center;
  
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
      position: relative;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  
  
  
  
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
    
    
  }


.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-content {
  
    align-items: center;
  
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
      position: relative;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  
  
  
  
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
    
    
  }


.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-content {
  
    align-items: center;
  
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
      position: relative;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  
  
  
  
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
    
    
  }


.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 .shogun-image-content {
  
    align-items: center;
  
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container {
      position: relative;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f91f0c2f-bf31-47f8-bd80-8660cb13b673 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-aa919686-d11a-4987-8f43-38f9be30bc7b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  max-width: 52px;
aspect-ratio: 65/150;
text-align: center;
}



.shg-image-margin-container-s-807e2611-59d7-4602-82d6-9904961b3859 {
  
  
  
  
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
    
    
  }


.s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-content {
  
    align-items: center;
  
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-807e2611-59d7-4602-82d6-9904961b3859 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
      position: relative;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-807e2611-59d7-4602-82d6-9904961b3859 {
  
  
  
  
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
    
    
  }


.s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-content {
  
    align-items: center;
  
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-807e2611-59d7-4602-82d6-9904961b3859 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
      position: relative;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-807e2611-59d7-4602-82d6-9904961b3859 {
  
  
  
  
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
    
    
  }


.s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-content {
  
    align-items: center;
  
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-807e2611-59d7-4602-82d6-9904961b3859 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
      position: relative;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-807e2611-59d7-4602-82d6-9904961b3859 {
  
  
  
  
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
    
    
  }


.s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-content {
  
    align-items: center;
  
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-807e2611-59d7-4602-82d6-9904961b3859 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
      position: relative;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-807e2611-59d7-4602-82d6-9904961b3859 {
  
  
  
  
}

#s-807e2611-59d7-4602-82d6-9904961b3859 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-807e2611-59d7-4602-82d6-9904961b3859 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
    
    
  }


.s-807e2611-59d7-4602-82d6-9904961b3859 .shogun-image-content {
  
    align-items: center;
  
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shg-align-container {
  display: flex;
  justify-content: center
}

.s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-807e2611-59d7-4602-82d6-9904961b3859 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container {
      position: relative;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-807e2611-59d7-4602-82d6-9904961b3859 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-902233c3-1de0-4a10-a9ad-c326716a7672 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-8da45df1-d451-40dc-9f74-815fdcdc28d9 {
  min-height: 45px;
}








#s-8da45df1-d451-40dc-9f74-815fdcdc28d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8da45df1-d451-40dc-9f74-815fdcdc28d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  
  
  
  
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
    
    
  }


.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-content {
  
    align-items: center;
  
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shg-align-container {
  display: flex;
  justify-content: center
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
      position: relative;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  
  
  
  
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
    
    
  }


.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-content {
  
    align-items: center;
  
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shg-align-container {
  display: flex;
  justify-content: center
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
      position: relative;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  
  
  
  
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
    
    
  }


.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-content {
  
    align-items: center;
  
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shg-align-container {
  display: flex;
  justify-content: center
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
      position: relative;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  
  
  
  
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
    
    
  }


.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-content {
  
    align-items: center;
  
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shg-align-container {
  display: flex;
  justify-content: center
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
      position: relative;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  
  
  
  
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
    
    
  }


.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 .shogun-image-content {
  
    align-items: center;
  
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shg-align-container {
  display: flex;
  justify-content: center
}

.s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container {
      position: relative;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-071bb5ad-04eb-40d4-a36a-fe4d1ce24838 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9afb8d55-3cc7-4e66-8fe0-2eb28bbcf4a0 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-280148fc-bb60-4072-b03e-59b34f7a13ca {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-280148fc-bb60-4072-b03e-59b34f7a13ca"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-280148fc-bb60-4072-b03e-59b34f7a13ca"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-280148fc-bb60-4072-b03e-59b34f7a13ca"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-280148fc-bb60-4072-b03e-59b34f7a13ca"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-838d5123-74d7-4e4f-8009-64f5de3490a0 {
  min-height: 50px;
}








#s-838d5123-74d7-4e4f-8009-64f5de3490a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-838d5123-74d7-4e4f-8009-64f5de3490a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  
  
  
  
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
    
    
  }


.s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-content {
  
    align-items: center;
  
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3af0b51-dd1d-45d6-8418-735016c4654f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
      position: relative;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  
  
  
  
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
    
    
  }


.s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-content {
  
    align-items: center;
  
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3af0b51-dd1d-45d6-8418-735016c4654f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
      position: relative;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  
  
  
  
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
    
    
  }


.s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-content {
  
    align-items: center;
  
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3af0b51-dd1d-45d6-8418-735016c4654f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
      position: relative;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  
  
  
  
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
    
    
  }


.s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-content {
  
    align-items: center;
  
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3af0b51-dd1d-45d6-8418-735016c4654f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
      position: relative;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  
  
  
  
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b3af0b51-dd1d-45d6-8418-735016c4654f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
    
    
  }


.s-b3af0b51-dd1d-45d6-8418-735016c4654f .shogun-image-content {
  
    align-items: center;
  
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b3af0b51-dd1d-45d6-8418-735016c4654f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container {
      position: relative;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b3af0b51-dd1d-45d6-8418-735016c4654f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6c975c78-b095-404f-9000-67ab45b6d83c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-ea51c134-f449-437d-b7e3-63613e79e051 {
  min-height: 50px;
}








#s-ea51c134-f449-437d-b7e3-63613e79e051 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ea51c134-f449-437d-b7e3-63613e79e051.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  
  
  
  
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
    
    
  }


.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
      position: relative;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  
  
  
  
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
    
    
  }


.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
      position: relative;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  
  
  
  
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
    
    
  }


.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
      position: relative;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  
  
  
  
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
    
    
  }


.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
      position: relative;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  
  
  
  
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
    
    
  }


.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container {
      position: relative;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d96ff5d-a6ac-4620-a87d-c092ca9be4a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a59240ab-f4e3-46f6-a6da-a96932f76315 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-c69873e2-ef86-46d9-ac21-a0797a09e16b {
  min-height: 50px;
}








#s-c69873e2-ef86-46d9-ac21-a0797a09e16b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c69873e2-ef86-46d9-ac21-a0797a09e16b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  
  
  
  
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
    
    
  }


.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
      position: relative;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  
  
  
  
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
    
    
  }


.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
      position: relative;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  
  
  
  
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
    
    
  }


.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
      position: relative;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  
  
  
  
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
    
    
  }


.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
      position: relative;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  
  
  
  
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
    
    
  }


.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a .shogun-image-content {
  
    align-items: center;
  
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container {
      position: relative;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b42fbc8c-df3b-4095-b413-0cf6f25adf1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-74d1b971-4713-4e0d-b854-9aee0c9204fd {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  
  
  
  
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
    
    
  }


.s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-content {
  
    align-items: center;
  
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
      position: relative;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  
  
  
  
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
    
    
  }


.s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-content {
  
    align-items: center;
  
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
      position: relative;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  
  
  
  
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
    
    
  }


.s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-content {
  
    align-items: center;
  
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
      position: relative;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  
  
  
  
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
    
    
  }


.s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-content {
  
    align-items: center;
  
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
      position: relative;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  
  
  
  
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
    
    
  }


.s-cbf33816-6007-4447-a5d0-cd13ad58de5b .shogun-image-content {
  
    align-items: center;
  
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container {
      position: relative;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cbf33816-6007-4447-a5d0-cd13ad58de5b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-254d6718-453a-4b2c-b570-2429eccf37d6 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  
  
  
  
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
    
    
  }


.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-content {
  
    align-items: center;
  
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
      position: relative;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  
  
  
  
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
    
    
  }


.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-content {
  
    align-items: center;
  
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
      position: relative;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  
  
  
  
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
    
    
  }


.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-content {
  
    align-items: center;
  
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
      position: relative;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  
  
  
  
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
    
    
  }


.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-content {
  
    align-items: center;
  
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
      position: relative;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  
  
  
  
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
    
    
  }


.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 .shogun-image-content {
  
    align-items: center;
  
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container {
      position: relative;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fafd056d-5aab-4e5e-8c6d-576303c8dc22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2418b2e2-e4cd-46ee-9a62-4d4470d1476d {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-2bfd196c-a994-4934-8fab-6a53eaf8ef2c {
  min-height: 50px;
}








#s-2bfd196c-a994-4934-8fab-6a53eaf8ef2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2bfd196c-a994-4934-8fab-6a53eaf8ef2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  
  
  
  
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
    
    
  }


.s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-content {
  
    align-items: center;
  
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
      position: relative;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  
  
  
  
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
    
    
  }


.s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-content {
  
    align-items: center;
  
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
      position: relative;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  
  
  
  
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
    
    
  }


.s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-content {
  
    align-items: center;
  
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
      position: relative;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  
  
  
  
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
    
    
  }


.s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-content {
  
    align-items: center;
  
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
      position: relative;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  
  
  
  
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
    
    
  }


.s-31e0683f-4700-4e2e-8b40-67b8681fe552 .shogun-image-content {
  
    align-items: center;
  
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shg-align-container {
  display: flex;
  justify-content: center
}

.s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container {
      position: relative;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-31e0683f-4700-4e2e-8b40-67b8681fe552 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fbfb1ad7-5e6a-4772-be13-af2b2c5711be {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 {
  display: none;
}
#s-2690eb88-bd21-437d-acb6-3927eeb8ee43, #wrap-s-2690eb88-bd21-437d-acb6-3927eeb8ee43 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 {
  display: none;
}
#s-2690eb88-bd21-437d-acb6-3927eeb8ee43, #wrap-s-2690eb88-bd21-437d-acb6-3927eeb8ee43 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 {
  display: none;
}
#s-2690eb88-bd21-437d-acb6-3927eeb8ee43, #wrap-s-2690eb88-bd21-437d-acb6-3927eeb8ee43 { display: none !important; }}@media (max-width: 767px){#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 {
  
}
}







#s-2690eb88-bd21-437d-acb6-3927eeb8ee43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2690eb88-bd21-437d-acb6-3927eeb8ee43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62f95eab-d09b-45f8-8447-79a52e3573d7 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 0);
}


  #s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
  #s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(244, 244, 244, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: Lato;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(244, 244, 244, 1);
}

#s-62f95eab-d09b-45f8-8447-79a52e3573d7 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-701e30b5-74b8-4e29-b3bf-8983df64c521 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(255, 255, 255, 1);
}








#s-701e30b5-74b8-4e29-b3bf-8983df64c521 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-701e30b5-74b8-4e29-b3bf-8983df64c521.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b90249e9-c301-4f2f-ae3e-ed6b08b8656e {
  margin-left: 19%;
margin-right: 19%;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-b90249e9-c301-4f2f-ae3e-ed6b08b8656e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Cormorant Garamond Bold";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-57cd680c-8fa0-4dc3-a061-8acb351871a2 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
}

#s-83c72678-33db-4e4b-8a08-2a8ed2642425 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
}

#slider-v3-s-83c72678-33db-4e4b-8a08-2a8ed2642425 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-83c72678-33db-4e4b-8a08-2a8ed2642425 > .swiper-button-prev,
#slider-v3-s-83c72678-33db-4e4b-8a08-2a8ed2642425 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-83c72678-33db-4e4b-8a08-2a8ed2642425 > .swiper-button-next svg,
#slider-v3-s-83c72678-33db-4e4b-8a08-2a8ed2642425 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-0292b33c-3d95-4a53-bd83-9dc8f3c8f8d3 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-0292b33c-3d95-4a53-bd83-9dc8f3c8f8d3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0292b33c-3d95-4a53-bd83-9dc8f3c8f8d3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-0292b33c-3d95-4a53-bd83-9dc8f3c8f8d3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-0292b33c-3d95-4a53-bd83-9dc8f3c8f8d3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  
  
  
  
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
    
    
  }


.s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
      position: relative;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  
  
  
  
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
    
    
  }


.s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
      position: relative;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  
  
  
  
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
    
    
  }


.s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
      position: relative;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  
  
  
  
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
    
    
  }


.s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
      position: relative;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  
  
  
  
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
    
    
  }


.s-62e79e02-6824-4662-b8f5-966ccab7c7c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container {
      position: relative;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62e79e02-6824-4662-b8f5-966ccab7c7c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2dc31437-4db2-4783-843d-c0d798827a4a {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  
  
  
  
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
    
    
  }


.s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-content {
  
    align-items: center;
  
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a60480a3-a076-4588-9a4d-8d24cb70089e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
      position: relative;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  
  
  
  
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
    
    
  }


.s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-content {
  
    align-items: center;
  
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a60480a3-a076-4588-9a4d-8d24cb70089e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
      position: relative;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  
  
  
  
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
    
    
  }


.s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-content {
  
    align-items: center;
  
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a60480a3-a076-4588-9a4d-8d24cb70089e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
      position: relative;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  
  
  
  
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
    
    
  }


.s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-content {
  
    align-items: center;
  
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a60480a3-a076-4588-9a4d-8d24cb70089e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
      position: relative;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  
  
  
  
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a60480a3-a076-4588-9a4d-8d24cb70089e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
    
    
  }


.s-a60480a3-a076-4588-9a4d-8d24cb70089e .shogun-image-content {
  
    align-items: center;
  
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a60480a3-a076-4588-9a4d-8d24cb70089e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container {
      position: relative;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a60480a3-a076-4588-9a4d-8d24cb70089e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4b12d068-252c-429e-8389-b71e78f90116 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-c31fd470-0fb4-4334-b575-1ce78bcdb646 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-c31fd470-0fb4-4334-b575-1ce78bcdb646"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c31fd470-0fb4-4334-b575-1ce78bcdb646"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-c31fd470-0fb4-4334-b575-1ce78bcdb646"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-c31fd470-0fb4-4334-b575-1ce78bcdb646"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-d26ff792-d141-4da4-80ec-53e9c27744c4 {
  min-height: 50px;
}








#s-d26ff792-d141-4da4-80ec-53e9c27744c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d26ff792-d141-4da4-80ec-53e9c27744c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  
  
  
  
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
    
    
  }


.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-content {
  
    align-items: center;
  
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
      position: relative;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  
  
  
  
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
    
    
  }


.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-content {
  
    align-items: center;
  
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
      position: relative;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  
  
  
  
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
    
    
  }


.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-content {
  
    align-items: center;
  
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
      position: relative;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  
  
  
  
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
    
    
  }


.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-content {
  
    align-items: center;
  
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
      position: relative;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  
  
  
  
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
    
    
  }


.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 .shogun-image-content {
  
    align-items: center;
  
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container {
      position: relative;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7cba9709-e9b1-4dde-86ce-d0adcb431f84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2733d053-af83-4f1f-ae7c-6fd8dc60b667 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-70de4207-98dd-4f83-897e-c7e30ef08af0 {
  min-height: 50px;
}








#s-70de4207-98dd-4f83-897e-c7e30ef08af0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-70de4207-98dd-4f83-897e-c7e30ef08af0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  
  
  
  
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
    
    
  }


.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
      position: relative;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  
  
  
  
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
    
    
  }


.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
      position: relative;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  
  
  
  
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
    
    
  }


.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
      position: relative;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  
  
  
  
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
    
    
  }


.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
      position: relative;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  
  
  
  
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
    
    
  }


.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container {
      position: relative;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1faa39d8-95ff-4576-a9ab-e141dcbe80e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a2541030-bb01-4686-8a8c-a460551687e3 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-e9e79c86-7730-44af-8c0e-3efd2fb2e5a6 {
  min-height: 50px;
}








#s-e9e79c86-7730-44af-8c0e-3efd2fb2e5a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e9e79c86-7730-44af-8c0e-3efd2fb2e5a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  
  
  
  
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
    
    
  }


.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-content {
  
    align-items: center;
  
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
      position: relative;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  
  
  
  
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
    
    
  }


.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-content {
  
    align-items: center;
  
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
      position: relative;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  
  
  
  
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
    
    
  }


.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-content {
  
    align-items: center;
  
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
      position: relative;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  
  
  
  
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
    
    
  }


.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-content {
  
    align-items: center;
  
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
      position: relative;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  
  
  
  
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
    
    
  }


.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a .shogun-image-content {
  
    align-items: center;
  
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container {
      position: relative;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a32e2e4d-baa0-4823-8e7f-bcee88bfce7a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3c326e3a-d9fa-43ec-88f2-393a711a97a7 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  
  
  
  
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
    
    
  }


.s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-content {
  
    align-items: center;
  
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
      position: relative;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  
  
  
  
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
    
    
  }


.s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-content {
  
    align-items: center;
  
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
      position: relative;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  
  
  
  
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
    
    
  }


.s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-content {
  
    align-items: center;
  
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
      position: relative;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  
  
  
  
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
    
    
  }


.s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-content {
  
    align-items: center;
  
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
      position: relative;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  
  
  
  
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
    
    
  }


.s-d0a039b2-51d7-4571-9755-07ec4731ca30 .shogun-image-content {
  
    align-items: center;
  
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container {
      position: relative;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d0a039b2-51d7-4571-9755-07ec4731ca30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d15630e4-f3a8-47a9-aee7-e83e1df711dd {
  margin-top: 0px;
padding-bottom: 25px;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  
  
  
  
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
    
    
  }


.s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-content {
  
    align-items: center;
  
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
      position: relative;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  
  
  
  
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
    
    
  }


.s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-content {
  
    align-items: center;
  
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
      position: relative;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  
  
  
  
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
    
    
  }


.s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-content {
  
    align-items: center;
  
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
      position: relative;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  
  
  
  
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
    
    
  }


.s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-content {
  
    align-items: center;
  
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
      position: relative;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  
  
  
  
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
    
    
  }


.s-97a5ea02-4494-45f1-93fc-ef5128a62783 .shogun-image-content {
  
    align-items: center;
  
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container {
      position: relative;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a5ea02-4494-45f1-93fc-ef5128a62783 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b8e002f2-3672-47d2-a72e-2aa7a8b2678a {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-630186f8-481e-4afd-bef0-1b3fde7c7903 {
  min-height: 50px;
}








#s-630186f8-481e-4afd-bef0-1b3fde7c7903 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-630186f8-481e-4afd-bef0-1b3fde7c7903.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1089c286-7786-4e0d-9b79-da175af90b63 {
  
  
  
  
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
    
    
  }


.s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-content {
  
    align-items: center;
  
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1089c286-7786-4e0d-9b79-da175af90b63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
      position: relative;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1089c286-7786-4e0d-9b79-da175af90b63 {
  
  
  
  
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
    
    
  }


.s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-content {
  
    align-items: center;
  
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1089c286-7786-4e0d-9b79-da175af90b63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
      position: relative;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1089c286-7786-4e0d-9b79-da175af90b63 {
  
  
  
  
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
    
    
  }


.s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-content {
  
    align-items: center;
  
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1089c286-7786-4e0d-9b79-da175af90b63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
      position: relative;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1089c286-7786-4e0d-9b79-da175af90b63 {
  
  
  
  
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
    
    
  }


.s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-content {
  
    align-items: center;
  
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1089c286-7786-4e0d-9b79-da175af90b63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
      position: relative;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1089c286-7786-4e0d-9b79-da175af90b63 {
  
  
  
  
}

#s-1089c286-7786-4e0d-9b79-da175af90b63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1089c286-7786-4e0d-9b79-da175af90b63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
    
    
  }


.s-1089c286-7786-4e0d-9b79-da175af90b63 .shogun-image-content {
  
    align-items: center;
  
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1089c286-7786-4e0d-9b79-da175af90b63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container {
      position: relative;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1089c286-7786-4e0d-9b79-da175af90b63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b43bc6ca-11bb-4ac8-9832-6a65a9fe7ea0 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-52ea7087-008f-4ae1-8ad3-a27c6c1f8bb7 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-52ea7087-008f-4ae1-8ad3-a27c6c1f8bb7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-52ea7087-008f-4ae1-8ad3-a27c6c1f8bb7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-52ea7087-008f-4ae1-8ad3-a27c6c1f8bb7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-52ea7087-008f-4ae1-8ad3-a27c6c1f8bb7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-52cf5b79-045f-49a0-b159-f13e95d763ec {
  min-height: 50px;
}








#s-52cf5b79-045f-49a0-b159-f13e95d763ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52cf5b79-045f-49a0-b159-f13e95d763ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  
  
  
  
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
    
    
  }


.s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
      position: relative;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  
  
  
  
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
    
    
  }


.s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
      position: relative;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  
  
  
  
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
    
    
  }


.s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
      position: relative;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  
  
  
  
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
    
    
  }


.s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
      position: relative;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  
  
  
  
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
    
    
  }


.s-ef3a6a93-d144-4356-aee2-c789a50391d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container {
      position: relative;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3a6a93-d144-4356-aee2-c789a50391d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-216fcf1e-afb3-464d-bf7c-17a2be159347 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-b4a81868-1932-4350-8f99-990d3304f8ce {
  min-height: 50px;
}








#s-b4a81868-1932-4350-8f99-990d3304f8ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b4a81868-1932-4350-8f99-990d3304f8ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  
  
  
  
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
    
    
  }


.s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-content {
  
    align-items: center;
  
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
      position: relative;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  
  
  
  
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
    
    
  }


.s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-content {
  
    align-items: center;
  
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
      position: relative;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  
  
  
  
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
    
    
  }


.s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-content {
  
    align-items: center;
  
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
      position: relative;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  
  
  
  
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
    
    
  }


.s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-content {
  
    align-items: center;
  
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
      position: relative;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  
  
  
  
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
    
    
  }


.s-37b2d5fd-f054-4931-a9da-5675e964fe88 .shogun-image-content {
  
    align-items: center;
  
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shg-align-container {
  display: flex;
  justify-content: center
}

.s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container {
      position: relative;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-37b2d5fd-f054-4931-a9da-5675e964fe88 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ca4b53bf-0083-4bd7-b0d2-e6a99d316887 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-4ebbd93a-b2af-4b72-bdcf-f5d8dedf2d3d {
  min-height: 50px;
}








#s-4ebbd93a-b2af-4b72-bdcf-f5d8dedf2d3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4ebbd93a-b2af-4b72-bdcf-f5d8dedf2d3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  
  
  
  
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
    
    
  }


.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
      position: relative;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  
  
  
  
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
    
    
  }


.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
      position: relative;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  
  
  
  
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
    
    
  }


.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
      position: relative;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  
  
  
  
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
    
    
  }


.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
      position: relative;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  
  
  
  
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
    
    
  }


.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 .shogun-image-content {
  
    align-items: center;
  
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container {
      position: relative;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8d5a8376-ede5-4724-a95b-f52ca9595bc7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4cff8a13-233d-4ad1-9a94-d09d85359679 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  
  
  
  
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
    
    
  }


.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
      position: relative;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  
  
  
  
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
    
    
  }


.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
      position: relative;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  
  
  
  
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
    
    
  }


.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
      position: relative;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  
  
  
  
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
    
    
  }


.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
      position: relative;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  
  
  
  
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
    
    
  }


.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff .shogun-image-content {
  
    align-items: center;
  
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shg-align-container {
  display: flex;
  justify-content: center
}

.s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container {
      position: relative;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-00ed218c-d4ee-4100-bf82-b33f98c3d6ff img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d21b696a-6eed-4c00-88a8-bd2cc51a1d0b {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  
  
  
  
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
    
    
  }


.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
      position: relative;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  
  
  
  
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
    
    
  }


.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
      position: relative;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  
  
  
  
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
    
    
  }


.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
      position: relative;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  
  
  
  
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
    
    
  }


.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
      position: relative;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  
  
  
  
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
    
    
  }


.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container {
      position: relative;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1d84651a-6d6d-4a29-a4a2-dadb08dda2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3b3929d4-8398-45df-a19b-e0514b491600 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-2b739fa5-674a-46c4-963b-ce6c12e3ec81 {
  min-height: 50px;
}








#s-2b739fa5-674a-46c4-963b-ce6c12e3ec81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2b739fa5-674a-46c4-963b-ce6c12e3ec81.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-51b41f0f-399e-4634-937d-958af3967c1a {
  
  
  
  
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
    
    
  }


.s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-content {
  
    align-items: center;
  
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51b41f0f-399e-4634-937d-958af3967c1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
      position: relative;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-51b41f0f-399e-4634-937d-958af3967c1a {
  
  
  
  
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
    
    
  }


.s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-content {
  
    align-items: center;
  
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51b41f0f-399e-4634-937d-958af3967c1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
      position: relative;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-51b41f0f-399e-4634-937d-958af3967c1a {
  
  
  
  
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
    
    
  }


.s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-content {
  
    align-items: center;
  
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51b41f0f-399e-4634-937d-958af3967c1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
      position: relative;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-51b41f0f-399e-4634-937d-958af3967c1a {
  
  
  
  
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
    
    
  }


.s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-content {
  
    align-items: center;
  
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51b41f0f-399e-4634-937d-958af3967c1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
      position: relative;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-51b41f0f-399e-4634-937d-958af3967c1a {
  
  
  
  
}

#s-51b41f0f-399e-4634-937d-958af3967c1a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51b41f0f-399e-4634-937d-958af3967c1a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
    
    
  }


.s-51b41f0f-399e-4634-937d-958af3967c1a .shogun-image-content {
  
    align-items: center;
  
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51b41f0f-399e-4634-937d-958af3967c1a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container {
      position: relative;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51b41f0f-399e-4634-937d-958af3967c1a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7da3753c-2f47-451a-97ce-7846443afb1f {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-8322552b-7d57-4573-9c2b-d1d24576afb4 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-8322552b-7d57-4573-9c2b-d1d24576afb4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8322552b-7d57-4573-9c2b-d1d24576afb4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-8322552b-7d57-4573-9c2b-d1d24576afb4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-8322552b-7d57-4573-9c2b-d1d24576afb4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-228010ef-4fa1-419f-a7ce-e327acc2a74b {
  min-height: 50px;
}








#s-228010ef-4fa1-419f-a7ce-e327acc2a74b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-228010ef-4fa1-419f-a7ce-e327acc2a74b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  
  
  
  
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
    
    
  }


.s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-content {
  
    align-items: center;
  
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e20afbf1-5883-466d-a1ce-5139b994a71e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
      position: relative;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  
  
  
  
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
    
    
  }


.s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-content {
  
    align-items: center;
  
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e20afbf1-5883-466d-a1ce-5139b994a71e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
      position: relative;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  
  
  
  
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
    
    
  }


.s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-content {
  
    align-items: center;
  
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e20afbf1-5883-466d-a1ce-5139b994a71e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
      position: relative;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  
  
  
  
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
    
    
  }


.s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-content {
  
    align-items: center;
  
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e20afbf1-5883-466d-a1ce-5139b994a71e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
      position: relative;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  
  
  
  
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e20afbf1-5883-466d-a1ce-5139b994a71e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
    
    
  }


.s-e20afbf1-5883-466d-a1ce-5139b994a71e .shogun-image-content {
  
    align-items: center;
  
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e20afbf1-5883-466d-a1ce-5139b994a71e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container {
      position: relative;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e20afbf1-5883-466d-a1ce-5139b994a71e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-006b3553-0b8b-4bcf-933f-ee99948f0969 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-47fc4de6-6c98-4cdb-8835-88356dee6d2e {
  min-height: 50px;
}








#s-47fc4de6-6c98-4cdb-8835-88356dee6d2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47fc4de6-6c98-4cdb-8835-88356dee6d2e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-677a634e-aeb1-4197-b668-b61747151e19 {
  
  
  
  
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
    
    
  }


.s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-content {
  
    align-items: center;
  
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-677a634e-aeb1-4197-b668-b61747151e19 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
      position: relative;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-677a634e-aeb1-4197-b668-b61747151e19 {
  
  
  
  
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
    
    
  }


.s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-content {
  
    align-items: center;
  
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-677a634e-aeb1-4197-b668-b61747151e19 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
      position: relative;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-677a634e-aeb1-4197-b668-b61747151e19 {
  
  
  
  
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
    
    
  }


.s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-content {
  
    align-items: center;
  
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-677a634e-aeb1-4197-b668-b61747151e19 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
      position: relative;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-677a634e-aeb1-4197-b668-b61747151e19 {
  
  
  
  
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
    
    
  }


.s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-content {
  
    align-items: center;
  
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-677a634e-aeb1-4197-b668-b61747151e19 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
      position: relative;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-677a634e-aeb1-4197-b668-b61747151e19 {
  
  
  
  
}

#s-677a634e-aeb1-4197-b668-b61747151e19 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-677a634e-aeb1-4197-b668-b61747151e19 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
    
    
  }


.s-677a634e-aeb1-4197-b668-b61747151e19 .shogun-image-content {
  
    align-items: center;
  
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shg-align-container {
  display: flex;
  justify-content: center
}

.s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-677a634e-aeb1-4197-b668-b61747151e19 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container {
      position: relative;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-677a634e-aeb1-4197-b668-b61747151e19 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5dd7dbfd-5b2a-4df4-8131-727312151b6c {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-31ae9f86-d4f7-4fd5-8a4a-b19c31db1676 {
  min-height: 50px;
}








#s-31ae9f86-d4f7-4fd5-8a4a-b19c31db1676 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-31ae9f86-d4f7-4fd5-8a4a-b19c31db1676.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  
  
  
  
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
    
    
  }


.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-content {
  
    align-items: center;
  
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
      position: relative;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  
  
  
  
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
    
    
  }


.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-content {
  
    align-items: center;
  
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
      position: relative;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  
  
  
  
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
    
    
  }


.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-content {
  
    align-items: center;
  
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
      position: relative;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  
  
  
  
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
    
    
  }


.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-content {
  
    align-items: center;
  
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
      position: relative;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  
  
  
  
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
    
    
  }


.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf .shogun-image-content {
  
    align-items: center;
  
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container {
      position: relative;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-462a5e19-6c7d-47bc-9da0-d494813b6ebf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-da44f9db-2495-4f92-8922-7835d5428091 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  
  
  
  
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
    
    
  }


.s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
      position: relative;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  
  
  
  
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
    
    
  }


.s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
      position: relative;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  
  
  
  
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
    
    
  }


.s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
      position: relative;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  
  
  
  
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
    
    
  }


.s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
      position: relative;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  
  
  
  
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
    
    
  }


.s-ab2038d1-3293-4ec2-9762-037637e6dbf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container {
      position: relative;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab2038d1-3293-4ec2-9762-037637e6dbf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7dc8deef-b644-4023-adb4-b27ef5487cb1 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  
  
  
  
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
    
    
  }


.s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
      position: relative;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  
  
  
  
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
    
    
  }


.s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
      position: relative;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  
  
  
  
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
    
    
  }


.s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
      position: relative;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  
  
  
  
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
    
    
  }


.s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
      position: relative;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  
  
  
  
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
    
    
  }


.s-d1686aa1-4412-4f8c-8161-48572cffc9e1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container {
      position: relative;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d1686aa1-4412-4f8c-8161-48572cffc9e1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7715deaf-a333-471e-b7a5-de83abf716f9 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-b41bcf0d-4ccc-4777-9d26-d4f324788b6d {
  min-height: 50px;
}








#s-b41bcf0d-4ccc-4777-9d26-d4f324788b6d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b41bcf0d-4ccc-4777-9d26-d4f324788b6d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  
  
  
  
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
    
    
  }


.s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-content {
  
    align-items: center;
  
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
      position: relative;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  
  
  
  
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
    
    
  }


.s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-content {
  
    align-items: center;
  
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
      position: relative;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  
  
  
  
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
    
    
  }


.s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-content {
  
    align-items: center;
  
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
      position: relative;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  
  
  
  
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
    
    
  }


.s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-content {
  
    align-items: center;
  
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
      position: relative;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  
  
  
  
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
    
    
  }


.s-97a8033b-3f52-4bed-8dd2-726134ce97fb .shogun-image-content {
  
    align-items: center;
  
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container {
      position: relative;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-97a8033b-3f52-4bed-8dd2-726134ce97fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ebdaa2e5-6564-4b53-9abe-c71a5e118eb6 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-7e572966-c623-4c35-85de-1ec126ba9b2a {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-7e572966-c623-4c35-85de-1ec126ba9b2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e572966-c623-4c35-85de-1ec126ba9b2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e0b711a-496f-4cfb-8d2d-8c7e5330bda0 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-9e0b711a-496f-4cfb-8d2d-8c7e5330bda0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-1be83823-dd5e-4fcd-b85b-a987de3e4a85 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 16%;
padding-bottom: 0px;
padding-right: 16%;
}

#s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
}

#slider-v3-s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 > .swiper-button-prev,
#slider-v3-s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 > .swiper-button-next svg,
#slider-v3-s-bdc5837c-af9b-428d-ba7c-cb5ff6bd3cb6 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-3daba52a-8821-4023-affe-dcf392933ea6 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-3daba52a-8821-4023-affe-dcf392933ea6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3daba52a-8821-4023-affe-dcf392933ea6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-3daba52a-8821-4023-affe-dcf392933ea6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-3daba52a-8821-4023-affe-dcf392933ea6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  
  
  
  
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
    
    
  }


.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
      position: relative;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  
  
  
  
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
    
    
  }


.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
      position: relative;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  
  
  
  
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
    
    
  }


.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
      position: relative;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  
  
  
  
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
    
    
  }


.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
      position: relative;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  
  
  
  
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
    
    
  }


.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 .shogun-image-content {
  
    align-items: center;
  
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container {
      position: relative;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-29f189ca-af7d-4a57-9c92-3fb28b76b6e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-71a021fa-8d55-4104-a543-c19fc006f404 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  
  
  
  
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
    
    
  }


.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-content {
  
    align-items: center;
  
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
      position: relative;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  
  
  
  
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
    
    
  }


.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-content {
  
    align-items: center;
  
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
      position: relative;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  
  
  
  
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
    
    
  }


.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-content {
  
    align-items: center;
  
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
      position: relative;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  
  
  
  
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
    
    
  }


.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-content {
  
    align-items: center;
  
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
      position: relative;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  
  
  
  
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
    
    
  }


.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 .shogun-image-content {
  
    align-items: center;
  
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container {
      position: relative;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6536f4c0-45ed-4e39-a9b2-dfea43997a27 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-63d78cde-5c8b-48aa-996d-d5b5159e908a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-b3f187d2-6680-4904-b4a9-15fdeecf5cd5 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-b3f187d2-6680-4904-b4a9-15fdeecf5cd5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b3f187d2-6680-4904-b4a9-15fdeecf5cd5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-b3f187d2-6680-4904-b4a9-15fdeecf5cd5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-b3f187d2-6680-4904-b4a9-15fdeecf5cd5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-db9fb8fe-aa4a-462b-add2-6aaaf0ef87f5 {
  min-height: 50px;
}








#s-db9fb8fe-aa4a-462b-add2-6aaaf0ef87f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db9fb8fe-aa4a-462b-add2-6aaaf0ef87f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  
  
  
  
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
    
    
  }


.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-content {
  
    align-items: center;
  
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
      position: relative;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  
  
  
  
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
    
    
  }


.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-content {
  
    align-items: center;
  
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
      position: relative;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  
  
  
  
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
    
    
  }


.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-content {
  
    align-items: center;
  
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
      position: relative;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  
  
  
  
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
    
    
  }


.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-content {
  
    align-items: center;
  
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
      position: relative;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  
  
  
  
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
    
    
  }


.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 .shogun-image-content {
  
    align-items: center;
  
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shg-align-container {
  display: flex;
  justify-content: center
}

.s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container {
      position: relative;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-81cf043b-7cf2-4f3b-8ac0-6ee789f8d936 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-209abe9c-7e5c-41b8-b904-53262d965232 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-89abb390-a9e6-4407-b0f4-2a76886a6f68 {
  min-height: 50px;
}








#s-89abb390-a9e6-4407-b0f4-2a76886a6f68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89abb390-a9e6-4407-b0f4-2a76886a6f68.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-2ce65925-8e77-4bdd-999c-20915181258c {
  
  
  
  
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
    
    
  }


.s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-content {
  
    align-items: center;
  
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2ce65925-8e77-4bdd-999c-20915181258c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
      position: relative;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2ce65925-8e77-4bdd-999c-20915181258c {
  
  
  
  
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
    
    
  }


.s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-content {
  
    align-items: center;
  
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2ce65925-8e77-4bdd-999c-20915181258c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
      position: relative;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2ce65925-8e77-4bdd-999c-20915181258c {
  
  
  
  
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
    
    
  }


.s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-content {
  
    align-items: center;
  
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2ce65925-8e77-4bdd-999c-20915181258c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
      position: relative;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2ce65925-8e77-4bdd-999c-20915181258c {
  
  
  
  
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
    
    
  }


.s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-content {
  
    align-items: center;
  
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2ce65925-8e77-4bdd-999c-20915181258c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
      position: relative;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2ce65925-8e77-4bdd-999c-20915181258c {
  
  
  
  
}

#s-2ce65925-8e77-4bdd-999c-20915181258c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2ce65925-8e77-4bdd-999c-20915181258c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
    
    
  }


.s-2ce65925-8e77-4bdd-999c-20915181258c .shogun-image-content {
  
    align-items: center;
  
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2ce65925-8e77-4bdd-999c-20915181258c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container {
      position: relative;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2ce65925-8e77-4bdd-999c-20915181258c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-adcc147a-583f-4dd2-8c16-b3762229a2a9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-e1e3cada-74e4-407c-a88d-f9a5677c758c {
  min-height: 50px;
}








#s-e1e3cada-74e4-407c-a88d-f9a5677c758c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e1e3cada-74e4-407c-a88d-f9a5677c758c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  
  
  
  
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
    
    
  }


.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-content {
  
    align-items: center;
  
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
      position: relative;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  
  
  
  
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
    
    
  }


.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-content {
  
    align-items: center;
  
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
      position: relative;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  
  
  
  
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
    
    
  }


.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-content {
  
    align-items: center;
  
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
      position: relative;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  
  
  
  
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
    
    
  }


.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-content {
  
    align-items: center;
  
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
      position: relative;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  
  
  
  
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
    
    
  }


.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a .shogun-image-content {
  
    align-items: center;
  
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container {
      position: relative;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d9980a7e-08d5-4e90-841e-a2c7438f3a3a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a67366ba-01d6-40ea-8113-47cda060697b {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  
  
  
  
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
    
    
  }


.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-content {
  
    align-items: center;
  
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
      position: relative;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  
  
  
  
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
    
    
  }


.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-content {
  
    align-items: center;
  
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
      position: relative;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  
  
  
  
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
    
    
  }


.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-content {
  
    align-items: center;
  
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
      position: relative;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  
  
  
  
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
    
    
  }


.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-content {
  
    align-items: center;
  
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
      position: relative;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  
  
  
  
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
    
    
  }


.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c .shogun-image-content {
  
    align-items: center;
  
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container {
      position: relative;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15bf6060-85d3-4c68-ba4b-58d40eaf896c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-806a2acc-25b9-4f38-9068-50f8ecfbbf2f {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-828f9810-dbc5-419f-8f58-1f3f2349ed9f {
  min-height: 50px;
}








#s-828f9810-dbc5-419f-8f58-1f3f2349ed9f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-828f9810-dbc5-419f-8f58-1f3f2349ed9f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  
  
  
  
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
    
    
  }


.s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-content {
  
    align-items: center;
  
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
      position: relative;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  
  
  
  
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
    
    
  }


.s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-content {
  
    align-items: center;
  
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
      position: relative;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  
  
  
  
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
    
    
  }


.s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-content {
  
    align-items: center;
  
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
      position: relative;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  
  
  
  
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
    
    
  }


.s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-content {
  
    align-items: center;
  
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
      position: relative;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  
  
  
  
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
    
    
  }


.s-5a34e7aa-634c-41c3-931a-dcd25b388580 .shogun-image-content {
  
    align-items: center;
  
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container {
      position: relative;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5a34e7aa-634c-41c3-931a-dcd25b388580 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-acb4e346-7121-4e72-b2f1-f50b676c6192 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-4a91d20c-b3c9-43f7-b57a-1b926a51c5c3 {
  min-height: 50px;
}








#s-4a91d20c-b3c9-43f7-b57a-1b926a51c5c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4a91d20c-b3c9-43f7-b57a-1b926a51c5c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  
  
  
  
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
    
    
  }


.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
      position: relative;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  
  
  
  
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
    
    
  }


.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
      position: relative;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  
  
  
  
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
    
    
  }


.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
      position: relative;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  
  
  
  
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
    
    
  }


.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
      position: relative;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  
  
  
  
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
    
    
  }


.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container {
      position: relative;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfa8e4a0-8769-40d0-b0ac-c0f6a0054a53 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-857bf90b-c4b0-4ed9-bb3b-af17c3e44750 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-bf3dc98e-b8a1-4ad8-bfc0-7f0396d14ecd {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-bf3dc98e-b8a1-4ad8-bfc0-7f0396d14ecd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bf3dc98e-b8a1-4ad8-bfc0-7f0396d14ecd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-bf3dc98e-b8a1-4ad8-bfc0-7f0396d14ecd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf3dc98e-b8a1-4ad8-bfc0-7f0396d14ecd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  
  
  
  
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
    
    
  }


.s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-content {
  
    align-items: center;
  
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
      position: relative;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  
  
  
  
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
    
    
  }


.s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-content {
  
    align-items: center;
  
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
      position: relative;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  
  
  
  
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
    
    
  }


.s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-content {
  
    align-items: center;
  
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
      position: relative;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  
  
  
  
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
    
    
  }


.s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-content {
  
    align-items: center;
  
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
      position: relative;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  
  
  
  
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
    
    
  }


.s-cda5d323-d985-4d06-b85f-3f932b3e3897 .shogun-image-content {
  
    align-items: center;
  
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container {
      position: relative;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cda5d323-d985-4d06-b85f-3f932b3e3897 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-47850231-3aa3-4167-8100-e064f2dbfc2b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  
  
  
  
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
    
    
  }


.s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
      position: relative;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  
  
  
  
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
    
    
  }


.s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
      position: relative;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  
  
  
  
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
    
    
  }


.s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
      position: relative;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  
  
  
  
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
    
    
  }


.s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
      position: relative;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  
  
  
  
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
    
    
  }


.s-c0cdc64a-649a-467f-9360-4592f8fd7d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container {
      position: relative;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c0cdc64a-649a-467f-9360-4592f8fd7d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8a43ca22-a4b2-4a46-be68-b0c4b36f2b0c {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-e5009592-17d4-4c35-9f50-5fdc68456a4b {
  min-height: 50px;
}








#s-e5009592-17d4-4c35-9f50-5fdc68456a4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e5009592-17d4-4c35-9f50-5fdc68456a4b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  
  
  
  
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
    
    
  }


.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
      position: relative;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  
  
  
  
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
    
    
  }


.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
      position: relative;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  
  
  
  
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
    
    
  }


.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
      position: relative;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  
  
  
  
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
    
    
  }


.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
      position: relative;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  
  
  
  
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
    
    
  }


.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container {
      position: relative;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8fbd6368-e4f7-45cf-b9d1-8bc514240cf1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e597bf5b-e644-4a61-8446-17f519711a3d {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-be821065-8756-45f1-ba14-2b4477241c96 {
  
  
  
  
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
    
    
  }


.s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-content {
  
    align-items: center;
  
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be821065-8756-45f1-ba14-2b4477241c96 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
      position: relative;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-be821065-8756-45f1-ba14-2b4477241c96 {
  
  
  
  
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
    
    
  }


.s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-content {
  
    align-items: center;
  
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be821065-8756-45f1-ba14-2b4477241c96 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
      position: relative;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-be821065-8756-45f1-ba14-2b4477241c96 {
  
  
  
  
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
    
    
  }


.s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-content {
  
    align-items: center;
  
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be821065-8756-45f1-ba14-2b4477241c96 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
      position: relative;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-be821065-8756-45f1-ba14-2b4477241c96 {
  
  
  
  
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
    
    
  }


.s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-content {
  
    align-items: center;
  
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be821065-8756-45f1-ba14-2b4477241c96 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
      position: relative;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-be821065-8756-45f1-ba14-2b4477241c96 {
  
  
  
  
}

#s-be821065-8756-45f1-ba14-2b4477241c96 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-be821065-8756-45f1-ba14-2b4477241c96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
    
    
  }


.s-be821065-8756-45f1-ba14-2b4477241c96 .shogun-image-content {
  
    align-items: center;
  
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-be821065-8756-45f1-ba14-2b4477241c96 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container {
      position: relative;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-be821065-8756-45f1-ba14-2b4477241c96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-124c1b4b-096a-4930-8d7b-2f003e9c8584 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  
  
  
  
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
    
    
  }


.s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
      position: relative;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  
  
  
  
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
    
    
  }


.s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
      position: relative;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  
  
  
  
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
    
    
  }


.s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
      position: relative;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  
  
  
  
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
    
    
  }


.s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
      position: relative;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  
  
  
  
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
    
    
  }


.s-24ffe80b-2de5-457e-a782-0f42c8a198f8 .shogun-image-content {
  
    align-items: center;
  
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container {
      position: relative;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ffe80b-2de5-457e-a782-0f42c8a198f8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e0e205ed-7104-4098-8db5-809aa920a04f {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-e801dbf8-2e88-4bab-8e96-256d022a3f22 {
  min-height: 50px;
}








#s-e801dbf8-2e88-4bab-8e96-256d022a3f22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e801dbf8-2e88-4bab-8e96-256d022a3f22.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  
  
  
  
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
    
    
  }


.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-content {
  
    align-items: center;
  
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
      position: relative;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  
  
  
  
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
    
    
  }


.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-content {
  
    align-items: center;
  
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
      position: relative;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  
  
  
  
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
    
    
  }


.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-content {
  
    align-items: center;
  
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
      position: relative;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  
  
  
  
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
    
    
  }


.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-content {
  
    align-items: center;
  
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
      position: relative;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  
  
  
  
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
    
    
  }


.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 .shogun-image-content {
  
    align-items: center;
  
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container {
      position: relative;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b52ded8e-0319-4f2c-b967-1f013f7cccd3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c1bc2353-18fb-4171-a291-a79b024177d2 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-9ab66ad3-4f28-4300-a337-ed3956b650f3 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
background-color: rgba(255, 255, 255, 1);
}








#s-9ab66ad3-4f28-4300-a337-ed3956b650f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9ab66ad3-4f28-4300-a337-ed3956b650f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4b4c26d-5b8b-4259-b80f-067628933013 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-e4b4c26d-5b8b-4259-b80f-067628933013 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 0px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad {
  
}
}@media (max-width: 767px){#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad {
  display: none;
}
#s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad, #wrap-s-45d38994-ba0f-4f9c-9d4f-97a87314c1ad { display: none !important; }}
#s-db4dc83e-faab-46c8-add1-24d3afe09889 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 0px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-db4dc83e-faab-46c8-add1-24d3afe09889 {
  display: none;
}
#s-db4dc83e-faab-46c8-add1-24d3afe09889, #wrap-s-db4dc83e-faab-46c8-add1-24d3afe09889 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-db4dc83e-faab-46c8-add1-24d3afe09889 {
  display: none;
}
#s-db4dc83e-faab-46c8-add1-24d3afe09889, #wrap-s-db4dc83e-faab-46c8-add1-24d3afe09889 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-db4dc83e-faab-46c8-add1-24d3afe09889 {
  display: none;
}
#s-db4dc83e-faab-46c8-add1-24d3afe09889, #wrap-s-db4dc83e-faab-46c8-add1-24d3afe09889 { display: none !important; }}
#s-47c5c192-a15d-44c9-9a4e-b42877885645 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: none;
}

#slider-v3-s-47c5c192-a15d-44c9-9a4e-b42877885645 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-47c5c192-a15d-44c9-9a4e-b42877885645 > .swiper-button-prev,
#slider-v3-s-47c5c192-a15d-44c9-9a4e-b42877885645 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-47c5c192-a15d-44c9-9a4e-b42877885645 > .swiper-button-next svg,
#slider-v3-s-47c5c192-a15d-44c9-9a4e-b42877885645 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-fc52620b-fdb1-4b8f-81cc-b0c705c08370 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-fc52620b-fdb1-4b8f-81cc-b0c705c08370"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-fc52620b-fdb1-4b8f-81cc-b0c705c08370"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-fc52620b-fdb1-4b8f-81cc-b0c705c08370"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc52620b-fdb1-4b8f-81cc-b0c705c08370"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-aad4b1f2-d96f-40c8-bab6-3b698fcf25f1 {
  min-height: 50px;
}








#s-aad4b1f2-d96f-40c8-bab6-3b698fcf25f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aad4b1f2-d96f-40c8-bab6-3b698fcf25f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  
  
  
  
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
    
    
  }


.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-content {
  
    align-items: center;
  
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
      position: relative;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  
  
  
  
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
    
    
  }


.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-content {
  
    align-items: center;
  
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
      position: relative;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  
  
  
  
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
    
    
  }


.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-content {
  
    align-items: center;
  
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
      position: relative;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  
  
  
  
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
    
    
  }


.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-content {
  
    align-items: center;
  
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
      position: relative;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  
  
  
  
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
    
    
  }


.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c .shogun-image-content {
  
    align-items: center;
  
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container {
      position: relative;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b646b4ce-d07c-43a0-a710-ddeb8b91c79c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3d6181cc-6e8c-4740-920b-0ea7dc311871 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  
  
  
  
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
    
    
  }


.s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
      position: relative;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  
  
  
  
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
    
    
  }


.s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
      position: relative;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  
  
  
  
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
    
    
  }


.s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
      position: relative;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  
  
  
  
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
    
    
  }


.s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
      position: relative;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  
  
  
  
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
    
    
  }


.s-7d3152a1-35d5-4c9d-9442-642eb0525dab .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container {
      position: relative;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3152a1-35d5-4c9d-9442-642eb0525dab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9063433d-9e11-42a5-a9f4-408ea796aa56 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-2339154e-839e-4ecf-a889-c5aedb5f0f62 {
  min-height: 50px;
}








#s-2339154e-839e-4ecf-a889-c5aedb5f0f62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2339154e-839e-4ecf-a889-c5aedb5f0f62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  
  
  
  
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
    
    
  }


.s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
      position: relative;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  
  
  
  
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
    
    
  }


.s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
      position: relative;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  
  
  
  
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
    
    
  }


.s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
      position: relative;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  
  
  
  
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
    
    
  }


.s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
      position: relative;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  
  
  
  
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
    
    
  }


.s-405fba1a-94b6-41a1-8997-86deab60e2b3 .shogun-image-content {
  
    align-items: center;
  
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container {
      position: relative;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-405fba1a-94b6-41a1-8997-86deab60e2b3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4a0193d6-ad10-441d-be27-3895bcf4ef5d {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  
  
  
  
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
    
    
  }


.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-content {
  
    align-items: center;
  
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
      position: relative;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  
  
  
  
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
    
    
  }


.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-content {
  
    align-items: center;
  
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
      position: relative;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  
  
  
  
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
    
    
  }


.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-content {
  
    align-items: center;
  
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
      position: relative;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  
  
  
  
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
    
    
  }


.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-content {
  
    align-items: center;
  
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
      position: relative;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  
  
  
  
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
    
    
  }


.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed .shogun-image-content {
  
    align-items: center;
  
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container {
      position: relative;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a92dcea-c051-43eb-8e3d-f2f7efbf88ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-dbac26ca-2541-4841-acc2-63ba987ccfc4 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  
  
  
  
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
    
    
  }


.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
      position: relative;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  
  
  
  
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
    
    
  }


.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
      position: relative;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  
  
  
  
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
    
    
  }


.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
      position: relative;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  
  
  
  
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
    
    
  }


.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
      position: relative;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  
  
  
  
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
    
    
  }


.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container {
      position: relative;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-84ae994d-b52d-4f64-9a39-1efdd79ff0f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d75c229e-ed27-44f7-805e-3c9982be557f {
  margin-top: 0px;
padding-bottom: 25px;
}

#s-b78e4284-dad8-4781-bb72-a516f7af483c {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-b78e4284-dad8-4781-bb72-a516f7af483c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b78e4284-dad8-4781-bb72-a516f7af483c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-b78e4284-dad8-4781-bb72-a516f7af483c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-b78e4284-dad8-4781-bb72-a516f7af483c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-9b74e255-5064-4800-b7f0-7b97980110c0 {
  min-height: 50px;
}








#s-9b74e255-5064-4800-b7f0-7b97980110c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b74e255-5064-4800-b7f0-7b97980110c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  
  
  
  
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
    
    
  }


.s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49287bf-a49f-4edb-81b8-9095c796af99 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
      position: relative;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  
  
  
  
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
    
    
  }


.s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49287bf-a49f-4edb-81b8-9095c796af99 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
      position: relative;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  
  
  
  
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
    
    
  }


.s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49287bf-a49f-4edb-81b8-9095c796af99 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
      position: relative;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  
  
  
  
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
    
    
  }


.s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49287bf-a49f-4edb-81b8-9095c796af99 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
      position: relative;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  
  
  
  
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49287bf-a49f-4edb-81b8-9095c796af99 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
    
    
  }


.s-a49287bf-a49f-4edb-81b8-9095c796af99 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49287bf-a49f-4edb-81b8-9095c796af99 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container {
      position: relative;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49287bf-a49f-4edb-81b8-9095c796af99 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a41283c2-8081-44a1-8e44-855ea322dce2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-cfb6ca6f-6fc3-4f50-9c0b-fcfec4a8ca18 {
  min-height: 50px;
}








#s-cfb6ca6f-6fc3-4f50-9c0b-fcfec4a8ca18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cfb6ca6f-6fc3-4f50-9c0b-fcfec4a8ca18.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  
  
  
  
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
    
    
  }


.s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
      position: relative;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  
  
  
  
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
    
    
  }


.s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
      position: relative;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  
  
  
  
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
    
    
  }


.s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
      position: relative;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  
  
  
  
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
    
    
  }


.s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
      position: relative;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  
  
  
  
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
    
    
  }


.s-d2afd3e5-7d0a-4346-b671-8edf20793526 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container {
      position: relative;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d2afd3e5-7d0a-4346-b671-8edf20793526 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-89e6489b-67f7-4471-81f5-95d60e1481f7 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-c6067301-9566-4f85-8033-2d7a18c957f3 {
  min-height: 50px;
}








#s-c6067301-9566-4f85-8033-2d7a18c957f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6067301-9566-4f85-8033-2d7a18c957f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  
  
  
  
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
    
    
  }


.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
      position: relative;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  
  
  
  
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
    
    
  }


.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
      position: relative;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  
  
  
  
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
    
    
  }


.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
      position: relative;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  
  
  
  
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
    
    
  }


.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
      position: relative;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  
  
  
  
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
    
    
  }


.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b .shogun-image-content {
  
    align-items: center;
  
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container {
      position: relative;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d44d58f-6e4b-48a3-9f3e-6f184e389b9b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6085eee8-2bed-4fbf-a92c-5c122778a91a {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-f821b43d-c158-472a-a023-930986aa8c75 {
  min-height: 50px;
}








#s-f821b43d-c158-472a-a023-930986aa8c75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f821b43d-c158-472a-a023-930986aa8c75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  
  
  
  
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
    
    
  }


.s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-content {
  
    align-items: center;
  
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
      position: relative;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  
  
  
  
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
    
    
  }


.s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-content {
  
    align-items: center;
  
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
      position: relative;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  
  
  
  
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
    
    
  }


.s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-content {
  
    align-items: center;
  
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
      position: relative;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  
  
  
  
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
    
    
  }


.s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-content {
  
    align-items: center;
  
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
      position: relative;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  
  
  
  
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
    
    
  }


.s-98125ef1-a3c1-481d-85a6-9bbca675f361 .shogun-image-content {
  
    align-items: center;
  
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shg-align-container {
  display: flex;
  justify-content: center
}

.s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container {
      position: relative;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-98125ef1-a3c1-481d-85a6-9bbca675f361 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-13f389f6-9480-4328-8c94-b20f95ac9482 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-8b5303d4-d582-457f-8fc5-5dc1ee525078 {
  min-height: 50px;
}








#s-8b5303d4-d582-457f-8fc5-5dc1ee525078 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b5303d4-d582-457f-8fc5-5dc1ee525078.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  max-width: 52px;
aspect-ratio: 105/244;
text-align: center;
}



.shg-image-margin-container-s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  
  
  
  
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
    
    
  }


.s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-content {
  
    align-items: center;
  
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88439012-2d1c-4e71-91af-5e72b5cb322c {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
      position: relative;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  
  
  
  
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
    
    
  }


.s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-content {
  
    align-items: center;
  
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88439012-2d1c-4e71-91af-5e72b5cb322c {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
      position: relative;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  
  
  
  
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
    
    
  }


.s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-content {
  
    align-items: center;
  
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88439012-2d1c-4e71-91af-5e72b5cb322c {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
      position: relative;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  
  
  
  
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
    
    
  }


.s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-content {
  
    align-items: center;
  
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88439012-2d1c-4e71-91af-5e72b5cb322c {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
      position: relative;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  
  
  
  
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88439012-2d1c-4e71-91af-5e72b5cb322c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
    
    
  }


.s-88439012-2d1c-4e71-91af-5e72b5cb322c .shogun-image-content {
  
    align-items: center;
  
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88439012-2d1c-4e71-91af-5e72b5cb322c {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container {
      position: relative;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88439012-2d1c-4e71-91af-5e72b5cb322c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b2759047-297c-4d25-bc12-07cc0250f182 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-a2a156ca-cebf-4c45-a8b8-3d0027c79251 {
  min-height: 50px;
}








#s-a2a156ca-cebf-4c45-a8b8-3d0027c79251 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2a156ca-cebf-4c45-a8b8-3d0027c79251.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  
  
  
  
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
    
    
  }


.s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e933283-b23f-4c38-8c90-6ebafe620120 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
      position: relative;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  
  
  
  
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
    
    
  }


.s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e933283-b23f-4c38-8c90-6ebafe620120 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
      position: relative;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  
  
  
  
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
    
    
  }


.s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e933283-b23f-4c38-8c90-6ebafe620120 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
      position: relative;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  
  
  
  
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
    
    
  }


.s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e933283-b23f-4c38-8c90-6ebafe620120 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
      position: relative;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  
  
  
  
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5e933283-b23f-4c38-8c90-6ebafe620120 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
    
    
  }


.s-5e933283-b23f-4c38-8c90-6ebafe620120 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5e933283-b23f-4c38-8c90-6ebafe620120 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container {
      position: relative;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5e933283-b23f-4c38-8c90-6ebafe620120 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a2612d4b-3826-44b9-be73-f525c9d8169c {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-3c93abae-c52e-429d-83af-33417dd61123 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-3c93abae-c52e-429d-83af-33417dd61123"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3c93abae-c52e-429d-83af-33417dd61123"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-3c93abae-c52e-429d-83af-33417dd61123"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c93abae-c52e-429d-83af-33417dd61123"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-c217a5a8-0419-4222-be22-0b694bd0bbbb {
  min-height: 45px;
}








#s-c217a5a8-0419-4222-be22-0b694bd0bbbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c217a5a8-0419-4222-be22-0b694bd0bbbb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-62055065-d97b-48f1-8ac8-dca02432411e {
  
  
  
  
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
    
    
  }


.s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-content {
  
    align-items: center;
  
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62055065-d97b-48f1-8ac8-dca02432411e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
      position: relative;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-62055065-d97b-48f1-8ac8-dca02432411e {
  
  
  
  
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
    
    
  }


.s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-content {
  
    align-items: center;
  
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62055065-d97b-48f1-8ac8-dca02432411e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
      position: relative;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62055065-d97b-48f1-8ac8-dca02432411e {
  
  
  
  
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
    
    
  }


.s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-content {
  
    align-items: center;
  
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62055065-d97b-48f1-8ac8-dca02432411e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
      position: relative;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62055065-d97b-48f1-8ac8-dca02432411e {
  
  
  
  
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
    
    
  }


.s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-content {
  
    align-items: center;
  
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62055065-d97b-48f1-8ac8-dca02432411e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
      position: relative;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-62055065-d97b-48f1-8ac8-dca02432411e {
  
  
  
  
}

#s-62055065-d97b-48f1-8ac8-dca02432411e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-62055065-d97b-48f1-8ac8-dca02432411e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
    
    
  }


.s-62055065-d97b-48f1-8ac8-dca02432411e .shogun-image-content {
  
    align-items: center;
  
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-62055065-d97b-48f1-8ac8-dca02432411e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container {
      position: relative;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-62055065-d97b-48f1-8ac8-dca02432411e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-dafcd0eb-4fba-4632-ac5b-47e6eb588697 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-f9b770bb-1c7c-403f-801c-589151b3fc88 {
  min-height: 45px;
}








#s-f9b770bb-1c7c-403f-801c-589151b3fc88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f9b770bb-1c7c-403f-801c-589151b3fc88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  
  
  
  
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
    
    
  }


.s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-content {
  
    align-items: center;
  
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
      position: relative;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  
  
  
  
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
    
    
  }


.s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-content {
  
    align-items: center;
  
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
      position: relative;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  
  
  
  
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
    
    
  }


.s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-content {
  
    align-items: center;
  
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
      position: relative;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  
  
  
  
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
    
    
  }


.s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-content {
  
    align-items: center;
  
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
      position: relative;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  
  
  
  
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
    
    
  }


.s-a22e9514-9034-406a-a4e3-a10a8311e4ec .shogun-image-content {
  
    align-items: center;
  
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container {
      position: relative;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a22e9514-9034-406a-a4e3-a10a8311e4ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ba18b2fa-1b13-4550-a883-923c1db7882d {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-91396e2e-4f38-4fdb-8700-8954a93af201 {
  min-height: 45px;
}








#s-91396e2e-4f38-4fdb-8700-8954a93af201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-91396e2e-4f38-4fdb-8700-8954a93af201.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  
  
  
  
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
    
    
  }


.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
      position: relative;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  
  
  
  
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
    
    
  }


.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
      position: relative;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  
  
  
  
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
    
    
  }


.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
      position: relative;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  
  
  
  
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
    
    
  }


.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
      position: relative;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  
  
  
  
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
    
    
  }


.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 .shogun-image-content {
  
    align-items: center;
  
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container {
      position: relative;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a00c9b13-4fba-4dc2-a83f-168cfa036ef2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-97ed41b1-c818-43cd-8edf-ac3b8d7b7004 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  
  
  
  
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
    
    
  }


.s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-content {
  
    align-items: center;
  
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a09ceb9a-a933-4b43-b01a-b483a45539da {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
      position: relative;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  
  
  
  
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
    
    
  }


.s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-content {
  
    align-items: center;
  
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a09ceb9a-a933-4b43-b01a-b483a45539da {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
      position: relative;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  
  
  
  
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
    
    
  }


.s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-content {
  
    align-items: center;
  
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a09ceb9a-a933-4b43-b01a-b483a45539da {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
      position: relative;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  
  
  
  
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
    
    
  }


.s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-content {
  
    align-items: center;
  
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a09ceb9a-a933-4b43-b01a-b483a45539da {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
      position: relative;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  
  
  
  
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a09ceb9a-a933-4b43-b01a-b483a45539da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
    
    
  }


.s-a09ceb9a-a933-4b43-b01a-b483a45539da .shogun-image-content {
  
    align-items: center;
  
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a09ceb9a-a933-4b43-b01a-b483a45539da {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container {
      position: relative;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a09ceb9a-a933-4b43-b01a-b483a45539da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e982d77c-c1e6-47c7-9310-b9ad55556ebe {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  max-width: 52px;
aspect-ratio: 65/150;
text-align: center;
}



.shg-image-margin-container-s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  
  
  
  
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
    
    
  }


.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
      position: relative;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  
  
  
  
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
    
    
  }


.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
      position: relative;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  
  
  
  
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
    
    
  }


.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
      position: relative;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  
  
  
  
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
    
    
  }


.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
      position: relative;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  
  
  
  
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
    
    
  }


.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container {
      position: relative;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3de18e8-d1ff-4b43-aee8-321c2d5ffdc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6825f50d-5758-424a-aeeb-e68195cd0e2b {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-7845df27-7d35-4927-89a1-ffa0163aa24f {
  min-height: 45px;
}








#s-7845df27-7d35-4927-89a1-ffa0163aa24f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7845df27-7d35-4927-89a1-ffa0163aa24f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  
  
  
  
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
    
    
  }


.s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
      position: relative;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  
  
  
  
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
    
    
  }


.s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
      position: relative;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  
  
  
  
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
    
    
  }


.s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
      position: relative;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  
  
  
  
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
    
    
  }


.s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
      position: relative;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  
  
  
  
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
    
    
  }


.s-1e2375f1-044d-4151-9c83-52f53228c5b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container {
      position: relative;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e2375f1-044d-4151-9c83-52f53228c5b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a227d215-843c-45cb-b3b1-bda3a2eaa0de {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-f7e8623a-5f72-4697-bc4c-83a76ac23500 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 13%;
padding-bottom: 10px;
padding-right: 13%;
}

@media (min-width: 0px) {
[id="s-f7e8623a-5f72-4697-bc4c-83a76ac23500"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f7e8623a-5f72-4697-bc4c-83a76ac23500"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-f7e8623a-5f72-4697-bc4c-83a76ac23500"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7e8623a-5f72-4697-bc4c-83a76ac23500"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-0df1127d-9332-4c93-a17d-64fe1b3bf69c {
  min-height: 50px;
}








#s-0df1127d-9332-4c93-a17d-64fe1b3bf69c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0df1127d-9332-4c93-a17d-64fe1b3bf69c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  
  
  
  
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
    
    
  }


.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-content {
  
    align-items: center;
  
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
      position: relative;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  
  
  
  
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
    
    
  }


.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-content {
  
    align-items: center;
  
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
      position: relative;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  
  
  
  
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
    
    
  }


.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-content {
  
    align-items: center;
  
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
      position: relative;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  
  
  
  
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
    
    
  }


.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-content {
  
    align-items: center;
  
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
      position: relative;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  
  
  
  
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
    
    
  }


.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a .shogun-image-content {
  
    align-items: center;
  
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container {
      position: relative;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-72d981bb-e8ca-437f-8464-7fb3c39afb8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8704cda8-461b-46f2-9bbb-2a7c4977333d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-c4363acc-9910-4471-843a-36c0fc3f5e38 {
  min-height: 50px;
}








#s-c4363acc-9910-4471-843a-36c0fc3f5e38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c4363acc-9910-4471-843a-36c0fc3f5e38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  
  
  
  
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
    
    
  }


.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
      position: relative;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  
  
  
  
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
    
    
  }


.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
      position: relative;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  
  
  
  
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
    
    
  }


.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
      position: relative;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  
  
  
  
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
    
    
  }


.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
      position: relative;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  
  
  
  
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
    
    
  }


.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 .shogun-image-content {
  
    align-items: center;
  
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container {
      position: relative;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7fee4b33-8fc5-4bbc-812a-6604e6dd4355 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4ebbb1d9-a252-4ab2-bfe6-568dc3dfabc1 {
  margin-top: 0px;
padding-bottom: 25px;
}

#s-0883d207-17dd-407d-9a5c-0b422c9e2104 {
  min-height: 50px;
}








#s-0883d207-17dd-407d-9a5c-0b422c9e2104 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0883d207-17dd-407d-9a5c-0b422c9e2104.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  
  
  
  
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
    
    
  }


.s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-content {
  
    align-items: center;
  
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
      position: relative;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  
  
  
  
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
    
    
  }


.s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-content {
  
    align-items: center;
  
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
      position: relative;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  
  
  
  
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
    
    
  }


.s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-content {
  
    align-items: center;
  
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
      position: relative;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  
  
  
  
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
    
    
  }


.s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-content {
  
    align-items: center;
  
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
      position: relative;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  
  
  
  
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
    
    
  }


.s-8a36ff01-aa59-49b1-a819-0e24337df3fb .shogun-image-content {
  
    align-items: center;
  
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container {
      position: relative;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8a36ff01-aa59-49b1-a819-0e24337df3fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1f2bb060-fde6-4118-98f6-b6294c7e2ead {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  
  
  
  
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
    
    
  }


.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-content {
  
    align-items: center;
  
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
      position: relative;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  
  
  
  
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
    
    
  }


.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-content {
  
    align-items: center;
  
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
      position: relative;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  
  
  
  
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
    
    
  }


.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-content {
  
    align-items: center;
  
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
      position: relative;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  
  
  
  
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
    
    
  }


.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-content {
  
    align-items: center;
  
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
      position: relative;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  
  
  
  
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
    
    
  }


.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd .shogun-image-content {
  
    align-items: center;
  
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container {
      position: relative;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b8d2b8f-7f2b-4671-b2b4-3db5dd6ed4bd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6121445d-a7bc-4f5e-a61b-81aaa2c7420c {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  
  
  
  
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
    
    
  }


.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
      position: relative;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  
  
  
  
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
    
    
  }


.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
      position: relative;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  
  
  
  
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
    
    
  }


.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
      position: relative;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  
  
  
  
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
    
    
  }


.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
      position: relative;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  
  
  
  
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
    
    
  }


.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container {
      position: relative;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-05bc5f30-5c68-46a1-8efb-5052c966e1d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b45bd7a1-675a-4484-829c-a995639572e0 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-af4738bb-a98f-4663-99e6-80433c439037 {
  min-height: 50px;
}








#s-af4738bb-a98f-4663-99e6-80433c439037 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-af4738bb-a98f-4663-99e6-80433c439037.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  
  
  
  
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
    
    
  }


.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-content {
  
    align-items: center;
  
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
      position: relative;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  
  
  
  
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
    
    
  }


.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-content {
  
    align-items: center;
  
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
      position: relative;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  
  
  
  
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
    
    
  }


.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-content {
  
    align-items: center;
  
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
      position: relative;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  
  
  
  
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
    
    
  }


.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-content {
  
    align-items: center;
  
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
      position: relative;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  
  
  
  
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
    
    
  }


.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d .shogun-image-content {
  
    align-items: center;
  
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container {
      position: relative;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a40d2e5c-cd74-4664-8787-4e4d3a229f2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-150c13fc-b8e0-4a66-970a-e4b7b7c82440 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 25px;
}

#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c {
  display: none;
}
#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c, #wrap-s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c {
  display: none;
}
#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c, #wrap-s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c {
  
}
}@media (max-width: 767px){#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c {
  display: none;
}
#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c, #wrap-s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c { display: none !important; }}







#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b4d22fc0-0bad-4b52-b4c8-0dff818c9c8c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 0);
}


  #s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
  #s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(244, 244, 244, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
  font-family: Lato;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(244, 244, 244, 1);
}

#s-10a48b35-aa48-4ebc-8e03-75a96f9b6e7f .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-632716da-5645-4990-93ed-fe1870c0ac02 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(255, 255, 255, 1);
}








#s-632716da-5645-4990-93ed-fe1870c0ac02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-632716da-5645-4990-93ed-fe1870c0ac02.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8fb2de2-8815-46a5-848a-59c064871180 {
  margin-left: 19%;
margin-right: 19%;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-b8fb2de2-8815-46a5-848a-59c064871180 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Cormorant Garamond Bold";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-66c719f8-c2aa-47fb-9a10-f2e6baf18ae1 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
}

#s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
}

#slider-v3-s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 > .swiper-button-prev,
#slider-v3-s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 > .swiper-button-next svg,
#slider-v3-s-2b75219a-1f3d-4b7d-bdac-866f07a737d5 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-42848f16-7dc7-48db-bf68-2b49fed2fe3b {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-42848f16-7dc7-48db-bf68-2b49fed2fe3b"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-42848f16-7dc7-48db-bf68-2b49fed2fe3b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-42848f16-7dc7-48db-bf68-2b49fed2fe3b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-42848f16-7dc7-48db-bf68-2b49fed2fe3b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  
  
  
  
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
    
    
  }


.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-content {
  
    align-items: center;
  
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
      position: relative;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  
  
  
  
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
    
    
  }


.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-content {
  
    align-items: center;
  
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
      position: relative;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  
  
  
  
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
    
    
  }


.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-content {
  
    align-items: center;
  
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
      position: relative;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  
  
  
  
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
    
    
  }


.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-content {
  
    align-items: center;
  
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
      position: relative;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  
  
  
  
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
    
    
  }


.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd .shogun-image-content {
  
    align-items: center;
  
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container {
      position: relative;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f6ce47ff-3e30-4617-a5d4-40fd854128cd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e88a14c1-4286-414c-bd0a-1a2a08885e71 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  
  
  
  
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
    
    
  }


.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-content {
  
    align-items: center;
  
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
      position: relative;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  
  
  
  
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
    
    
  }


.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-content {
  
    align-items: center;
  
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
      position: relative;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  
  
  
  
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
    
    
  }


.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-content {
  
    align-items: center;
  
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
      position: relative;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  
  
  
  
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
    
    
  }


.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-content {
  
    align-items: center;
  
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
      position: relative;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  
  
  
  
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
    
    
  }


.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 .shogun-image-content {
  
    align-items: center;
  
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container {
      position: relative;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-42599a50-2aa6-4fe5-adc2-9d71f14d4196 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a6c18264-dd43-47db-98c1-1da453c7ffdd {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-c2e8ce9f-2ae3-45aa-8a10-d3b4141d4f81 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-c2e8ce9f-2ae3-45aa-8a10-d3b4141d4f81"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-c2e8ce9f-2ae3-45aa-8a10-d3b4141d4f81"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-c2e8ce9f-2ae3-45aa-8a10-d3b4141d4f81"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-c2e8ce9f-2ae3-45aa-8a10-d3b4141d4f81"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-d02ba8b1-81f5-4777-b84b-b7235cf51ce1 {
  min-height: 50px;
}








#s-d02ba8b1-81f5-4777-b84b-b7235cf51ce1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d02ba8b1-81f5-4777-b84b-b7235cf51ce1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  
  
  
  
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
    
    
  }


.s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
      position: relative;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  
  
  
  
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
    
    
  }


.s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
      position: relative;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  
  
  
  
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
    
    
  }


.s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
      position: relative;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  
  
  
  
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
    
    
  }


.s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
      position: relative;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  
  
  
  
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
    
    
  }


.s-70e1c108-1044-41a3-b5eb-1d35db8609b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container {
      position: relative;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e1c108-1044-41a3-b5eb-1d35db8609b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-11922cb8-0f60-4576-a8d3-659c723e39c9 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-2be34656-aea0-4c0e-9151-65c0b180b0c0 {
  min-height: 50px;
}








#s-2be34656-aea0-4c0e-9151-65c0b180b0c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2be34656-aea0-4c0e-9151-65c0b180b0c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  
  
  
  
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
    
    
  }


.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
      position: relative;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  
  
  
  
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
    
    
  }


.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
      position: relative;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  
  
  
  
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
    
    
  }


.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
      position: relative;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  
  
  
  
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
    
    
  }


.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
      position: relative;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  
  
  
  
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
    
    
  }


.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container {
      position: relative;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dc7d1c3f-3fc5-40c9-b89b-710065e628d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5dad6959-584b-4c84-b44c-43689c15b465 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-d521a616-2933-4d9c-b7b7-4d6630fb17aa {
  min-height: 50px;
}








#s-d521a616-2933-4d9c-b7b7-4d6630fb17aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d521a616-2933-4d9c-b7b7-4d6630fb17aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-af0f0705-84a0-4b91-968c-582509bade65 {
  
  
  
  
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
    
    
  }


.s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af0f0705-84a0-4b91-968c-582509bade65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
      position: relative;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-af0f0705-84a0-4b91-968c-582509bade65 {
  
  
  
  
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
    
    
  }


.s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af0f0705-84a0-4b91-968c-582509bade65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
      position: relative;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-af0f0705-84a0-4b91-968c-582509bade65 {
  
  
  
  
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
    
    
  }


.s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af0f0705-84a0-4b91-968c-582509bade65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
      position: relative;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-af0f0705-84a0-4b91-968c-582509bade65 {
  
  
  
  
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
    
    
  }


.s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af0f0705-84a0-4b91-968c-582509bade65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
      position: relative;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-af0f0705-84a0-4b91-968c-582509bade65 {
  
  
  
  
}

#s-af0f0705-84a0-4b91-968c-582509bade65 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af0f0705-84a0-4b91-968c-582509bade65 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
    
    
  }


.s-af0f0705-84a0-4b91-968c-582509bade65 .shogun-image-content {
  
    align-items: center;
  
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af0f0705-84a0-4b91-968c-582509bade65 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container {
      position: relative;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af0f0705-84a0-4b91-968c-582509bade65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ac95bb3e-af0c-4100-add8-d35222298bbf {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  
  
  
  
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
    
    
  }


.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-content {
  
    align-items: center;
  
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
      position: relative;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  
  
  
  
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
    
    
  }


.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-content {
  
    align-items: center;
  
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
      position: relative;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  
  
  
  
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
    
    
  }


.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-content {
  
    align-items: center;
  
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
      position: relative;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  
  
  
  
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
    
    
  }


.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-content {
  
    align-items: center;
  
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
      position: relative;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  
  
  
  
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
    
    
  }


.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e .shogun-image-content {
  
    align-items: center;
  
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container {
      position: relative;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-347b6fc7-05d2-4ae2-b4e5-0b5772c41f1e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0843885c-e55c-4125-93eb-a2a98207fecc {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  
  
  
  
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
    
    
  }


.s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
      position: relative;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  
  
  
  
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
    
    
  }


.s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
      position: relative;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  
  
  
  
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
    
    
  }


.s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
      position: relative;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  
  
  
  
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
    
    
  }


.s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
      position: relative;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  
  
  
  
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
    
    
  }


.s-cfbcb8db-7040-4a48-874d-c9432dd819f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container {
      position: relative;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cfbcb8db-7040-4a48-874d-c9432dd819f9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-202ab597-4827-4a5b-8764-06b21d8ef43a {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-ab3a617f-55fe-44fc-860c-f3417980468d {
  min-height: 50px;
}








#s-ab3a617f-55fe-44fc-860c-f3417980468d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ab3a617f-55fe-44fc-860c-f3417980468d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  
  
  
  
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
    
    
  }


.s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
      position: relative;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  
  
  
  
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
    
    
  }


.s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
      position: relative;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  
  
  
  
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
    
    
  }


.s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
      position: relative;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  
  
  
  
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
    
    
  }


.s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
      position: relative;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  
  
  
  
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
    
    
  }


.s-4232e771-c517-4a0a-a118-2e0dfc7a7826 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container {
      position: relative;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4232e771-c517-4a0a-a118-2e0dfc7a7826 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-359aed7e-f706-4d6b-b1f0-9be7726fbbe1 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-111924df-aefd-4d54-bf55-e071787f9d98 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-111924df-aefd-4d54-bf55-e071787f9d98"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-111924df-aefd-4d54-bf55-e071787f9d98"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-111924df-aefd-4d54-bf55-e071787f9d98"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-111924df-aefd-4d54-bf55-e071787f9d98"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-a722b207-f0bd-41fc-9cde-af3b780ad430 {
  min-height: 50px;
}








#s-a722b207-f0bd-41fc-9cde-af3b780ad430 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a722b207-f0bd-41fc-9cde-af3b780ad430.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  
  
  
  
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
    
    
  }


.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
      position: relative;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  
  
  
  
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
    
    
  }


.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
      position: relative;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  
  
  
  
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
    
    
  }


.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
      position: relative;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  
  
  
  
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
    
    
  }


.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
      position: relative;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  
  
  
  
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
    
    
  }


.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 .shogun-image-content {
  
    align-items: center;
  
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container {
      position: relative;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f2d12df2-e607-4f1b-9968-b0bc4b3d4815 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d31320ad-a1ec-4125-aada-d4ad664a1b06 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-e2e2b6ff-5ec2-4b1b-9791-45d20522e4c7 {
  min-height: 50px;
}








#s-e2e2b6ff-5ec2-4b1b-9791-45d20522e4c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e2e2b6ff-5ec2-4b1b-9791-45d20522e4c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-afb36b4f-b505-462f-b421-96bc6141a218 {
  
  
  
  
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
    
    
  }


.s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-content {
  
    align-items: center;
  
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afb36b4f-b505-462f-b421-96bc6141a218 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
      position: relative;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-afb36b4f-b505-462f-b421-96bc6141a218 {
  
  
  
  
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
    
    
  }


.s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-content {
  
    align-items: center;
  
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afb36b4f-b505-462f-b421-96bc6141a218 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
      position: relative;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-afb36b4f-b505-462f-b421-96bc6141a218 {
  
  
  
  
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
    
    
  }


.s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-content {
  
    align-items: center;
  
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afb36b4f-b505-462f-b421-96bc6141a218 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
      position: relative;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-afb36b4f-b505-462f-b421-96bc6141a218 {
  
  
  
  
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
    
    
  }


.s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-content {
  
    align-items: center;
  
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afb36b4f-b505-462f-b421-96bc6141a218 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
      position: relative;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-afb36b4f-b505-462f-b421-96bc6141a218 {
  
  
  
  
}

#s-afb36b4f-b505-462f-b421-96bc6141a218 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-afb36b4f-b505-462f-b421-96bc6141a218 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
    
    
  }


.s-afb36b4f-b505-462f-b421-96bc6141a218 .shogun-image-content {
  
    align-items: center;
  
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shg-align-container {
  display: flex;
  justify-content: center
}

.s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-afb36b4f-b505-462f-b421-96bc6141a218 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container {
      position: relative;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-afb36b4f-b505-462f-b421-96bc6141a218 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-949536d9-f713-462a-a7e8-a0d37dd11435 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-11f56f83-dadb-4b01-817c-234eaaf50718 {
  min-height: 50px;
}








#s-11f56f83-dadb-4b01-817c-234eaaf50718 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-11f56f83-dadb-4b01-817c-234eaaf50718.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  
  
  
  
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
    
    
  }


.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-content {
  
    align-items: center;
  
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
      position: relative;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  
  
  
  
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
    
    
  }


.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-content {
  
    align-items: center;
  
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
      position: relative;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  
  
  
  
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
    
    
  }


.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-content {
  
    align-items: center;
  
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
      position: relative;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  
  
  
  
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
    
    
  }


.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-content {
  
    align-items: center;
  
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
      position: relative;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  
  
  
  
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
    
    
  }


.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d .shogun-image-content {
  
    align-items: center;
  
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container {
      position: relative;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-502cd6e7-e9cf-48f4-ad1f-df0b57a3b39d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2d7a80fc-21a3-47bd-9e26-868a13eced67 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5480b687-3471-4822-accf-99abb0431358 {
  
  
  
  
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
    
    
  }


.s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-content {
  
    align-items: center;
  
}

.s-5480b687-3471-4822-accf-99abb0431358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5480b687-3471-4822-accf-99abb0431358 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
      position: relative;
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5480b687-3471-4822-accf-99abb0431358 {
  
  
  
  
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
    
    
  }


.s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-content {
  
    align-items: center;
  
}

.s-5480b687-3471-4822-accf-99abb0431358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5480b687-3471-4822-accf-99abb0431358 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
      position: relative;
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5480b687-3471-4822-accf-99abb0431358 {
  
  
  
  
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
    
    
  }


.s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-content {
  
    align-items: center;
  
}

.s-5480b687-3471-4822-accf-99abb0431358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5480b687-3471-4822-accf-99abb0431358 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
      position: relative;
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5480b687-3471-4822-accf-99abb0431358 {
  
  
  
  
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
    
    
  }


.s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-content {
  
    align-items: center;
  
}

.s-5480b687-3471-4822-accf-99abb0431358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5480b687-3471-4822-accf-99abb0431358 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
      position: relative;
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5480b687-3471-4822-accf-99abb0431358 {
  
  
  
  
}

#s-5480b687-3471-4822-accf-99abb0431358 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5480b687-3471-4822-accf-99abb0431358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
    
    
  }


.s-5480b687-3471-4822-accf-99abb0431358 .shogun-image-content {
  
    align-items: center;
  
}

.s-5480b687-3471-4822-accf-99abb0431358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5480b687-3471-4822-accf-99abb0431358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5480b687-3471-4822-accf-99abb0431358 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container {
      position: relative;
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5480b687-3471-4822-accf-99abb0431358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5480b687-3471-4822-accf-99abb0431358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ab50a99d-7d17-42f9-9104-06a5d84c6ae2 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  
  
  
  
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
    
    
  }


.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
      position: relative;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  
  
  
  
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
    
    
  }


.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
      position: relative;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  
  
  
  
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
    
    
  }


.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
      position: relative;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  
  
  
  
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
    
    
  }


.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
      position: relative;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  
  
  
  
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
    
    
  }


.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 .shogun-image-content {
  
    align-items: center;
  
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container {
      position: relative;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c2095b4e-58de-4bd9-a2d0-2b1b7318d911 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4c02a158-e3bc-4fb3-a615-22b6389e17ec {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-07df6561-73df-4319-b871-2e51d73b055d {
  min-height: 50px;
}








#s-07df6561-73df-4319-b871-2e51d73b055d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07df6561-73df-4319-b871-2e51d73b055d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  
  
  
  
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
    
    
  }


.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
      position: relative;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  
  
  
  
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
    
    
  }


.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
      position: relative;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  
  
  
  
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
    
    
  }


.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
      position: relative;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  
  
  
  
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
    
    
  }


.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
      position: relative;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  
  
  
  
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
    
    
  }


.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container {
      position: relative;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdc2feea-b840-4ac1-951f-1ed52e4fb709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7009747e-f69a-4d86-939a-01e728d4d107 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-98b735e4-792f-4814-abcc-6eeb9f096dec {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-98b735e4-792f-4814-abcc-6eeb9f096dec"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-98b735e4-792f-4814-abcc-6eeb9f096dec"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-98b735e4-792f-4814-abcc-6eeb9f096dec"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-98b735e4-792f-4814-abcc-6eeb9f096dec"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-7f9634a3-2e9e-4945-a6cb-7b28b268696c {
  min-height: 50px;
}








#s-7f9634a3-2e9e-4945-a6cb-7b28b268696c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7f9634a3-2e9e-4945-a6cb-7b28b268696c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  
  
  
  
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
    
    
  }


.s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-content {
  
    align-items: center;
  
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7bea83dd-d712-43d9-9145-4154a812b4cb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
      position: relative;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  
  
  
  
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
    
    
  }


.s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-content {
  
    align-items: center;
  
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7bea83dd-d712-43d9-9145-4154a812b4cb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
      position: relative;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  
  
  
  
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
    
    
  }


.s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-content {
  
    align-items: center;
  
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7bea83dd-d712-43d9-9145-4154a812b4cb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
      position: relative;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  
  
  
  
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
    
    
  }


.s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-content {
  
    align-items: center;
  
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7bea83dd-d712-43d9-9145-4154a812b4cb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
      position: relative;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  
  
  
  
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7bea83dd-d712-43d9-9145-4154a812b4cb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
    
    
  }


.s-7bea83dd-d712-43d9-9145-4154a812b4cb .shogun-image-content {
  
    align-items: center;
  
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7bea83dd-d712-43d9-9145-4154a812b4cb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container {
      position: relative;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7bea83dd-d712-43d9-9145-4154a812b4cb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e82337ea-06b2-493f-88a9-7aa0c5617d9b {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-7ebe75df-1797-498f-83d4-6cf6d7a88619 {
  min-height: 50px;
}








#s-7ebe75df-1797-498f-83d4-6cf6d7a88619 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7ebe75df-1797-498f-83d4-6cf6d7a88619.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  
  
  
  
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
    
    
  }


.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-content {
  
    align-items: center;
  
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
      position: relative;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  
  
  
  
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
    
    
  }


.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-content {
  
    align-items: center;
  
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
      position: relative;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  
  
  
  
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
    
    
  }


.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-content {
  
    align-items: center;
  
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
      position: relative;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  
  
  
  
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
    
    
  }


.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-content {
  
    align-items: center;
  
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
      position: relative;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  
  
  
  
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
    
    
  }


.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 .shogun-image-content {
  
    align-items: center;
  
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container {
      position: relative;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e39e7614-56cc-4bbf-9763-8399ec9f8f63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-23f1ea5a-2830-4370-abb1-f033e4ab6dfd {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-8d55337d-5ab8-4f64-a026-9373b650a9c6 {
  min-height: 50px;
}








#s-8d55337d-5ab8-4f64-a026-9373b650a9c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d55337d-5ab8-4f64-a026-9373b650a9c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  
  
  
  
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
    
    
  }


.s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-content {
  
    align-items: center;
  
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6a57b3e6-6274-4d77-bc93-76004f157597 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
      position: relative;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  
  
  
  
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
    
    
  }


.s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-content {
  
    align-items: center;
  
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6a57b3e6-6274-4d77-bc93-76004f157597 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
      position: relative;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  
  
  
  
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
    
    
  }


.s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-content {
  
    align-items: center;
  
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6a57b3e6-6274-4d77-bc93-76004f157597 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
      position: relative;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  
  
  
  
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
    
    
  }


.s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-content {
  
    align-items: center;
  
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6a57b3e6-6274-4d77-bc93-76004f157597 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
      position: relative;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  
  
  
  
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6a57b3e6-6274-4d77-bc93-76004f157597 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
    
    
  }


.s-6a57b3e6-6274-4d77-bc93-76004f157597 .shogun-image-content {
  
    align-items: center;
  
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6a57b3e6-6274-4d77-bc93-76004f157597 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container {
      position: relative;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6a57b3e6-6274-4d77-bc93-76004f157597 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fdd57e43-57b0-4358-8d13-b4d1afde46ee {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  
  
  
  
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
    
    
  }


.s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-content {
  
    align-items: center;
  
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-69237693-c1c3-49cc-8e0d-170de16c8451 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
      position: relative;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  
  
  
  
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
    
    
  }


.s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-content {
  
    align-items: center;
  
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-69237693-c1c3-49cc-8e0d-170de16c8451 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
      position: relative;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  
  
  
  
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
    
    
  }


.s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-content {
  
    align-items: center;
  
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-69237693-c1c3-49cc-8e0d-170de16c8451 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
      position: relative;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  
  
  
  
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
    
    
  }


.s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-content {
  
    align-items: center;
  
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-69237693-c1c3-49cc-8e0d-170de16c8451 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
      position: relative;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  
  
  
  
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-69237693-c1c3-49cc-8e0d-170de16c8451 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
    
    
  }


.s-69237693-c1c3-49cc-8e0d-170de16c8451 .shogun-image-content {
  
    align-items: center;
  
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shg-align-container {
  display: flex;
  justify-content: center
}

.s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-69237693-c1c3-49cc-8e0d-170de16c8451 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container {
      position: relative;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-69237693-c1c3-49cc-8e0d-170de16c8451 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-83692097-e82e-46d5-a5b1-5ee8ccbc1080 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-278d6e3a-1027-404d-8263-35730785e2a9 {
  
  
  
  
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
    
    
  }


.s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-278d6e3a-1027-404d-8263-35730785e2a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
      position: relative;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-278d6e3a-1027-404d-8263-35730785e2a9 {
  
  
  
  
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
    
    
  }


.s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-278d6e3a-1027-404d-8263-35730785e2a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
      position: relative;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-278d6e3a-1027-404d-8263-35730785e2a9 {
  
  
  
  
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
    
    
  }


.s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-278d6e3a-1027-404d-8263-35730785e2a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
      position: relative;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-278d6e3a-1027-404d-8263-35730785e2a9 {
  
  
  
  
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
    
    
  }


.s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-278d6e3a-1027-404d-8263-35730785e2a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
      position: relative;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-278d6e3a-1027-404d-8263-35730785e2a9 {
  
  
  
  
}

#s-278d6e3a-1027-404d-8263-35730785e2a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-278d6e3a-1027-404d-8263-35730785e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
    
    
  }


.s-278d6e3a-1027-404d-8263-35730785e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-278d6e3a-1027-404d-8263-35730785e2a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container {
      position: relative;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-278d6e3a-1027-404d-8263-35730785e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-78768f23-e5a8-4899-a90e-14655c717200 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-30dd8f2f-40f5-42db-bdba-8451a0f44863 {
  min-height: 50px;
}








#s-30dd8f2f-40f5-42db-bdba-8451a0f44863 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30dd8f2f-40f5-42db-bdba-8451a0f44863.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  
  
  
  
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
    
    
  }


.s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
      position: relative;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  
  
  
  
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
    
    
  }


.s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
      position: relative;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  
  
  
  
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
    
    
  }


.s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
      position: relative;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  
  
  
  
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
    
    
  }


.s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
      position: relative;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  
  
  
  
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
    
    
  }


.s-a0578a94-18cc-4e53-b57b-2561daf716d1 .shogun-image-content {
  
    align-items: center;
  
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container {
      position: relative;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0578a94-18cc-4e53-b57b-2561daf716d1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ea7ce1b7-1833-4120-b882-a68433eb1760 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-2b940962-603c-4741-b12f-96b4ff57fd17 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2b940962-603c-4741-b12f-96b4ff57fd17 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2b940962-603c-4741-b12f-96b4ff57fd17.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06773f7e-2fe5-4a7a-bd4c-189abc02dfa3 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-06773f7e-2fe5-4a7a-bd4c-189abc02dfa3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-b44664cb-1a6e-45bb-a2a0-690f885262a2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 16%;
padding-bottom: 0px;
padding-right: 16%;
}

#s-7bf3a997-9b95-4962-8dab-249121fdf5ba {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
}

#slider-v3-s-7bf3a997-9b95-4962-8dab-249121fdf5ba {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-7bf3a997-9b95-4962-8dab-249121fdf5ba > .swiper-button-prev,
#slider-v3-s-7bf3a997-9b95-4962-8dab-249121fdf5ba > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-7bf3a997-9b95-4962-8dab-249121fdf5ba > .swiper-button-next svg,
#slider-v3-s-7bf3a997-9b95-4962-8dab-249121fdf5ba > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-8e22944a-05f2-40c3-843d-e17dbc7c44f1 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-8e22944a-05f2-40c3-843d-e17dbc7c44f1"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-8e22944a-05f2-40c3-843d-e17dbc7c44f1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-8e22944a-05f2-40c3-843d-e17dbc7c44f1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-8e22944a-05f2-40c3-843d-e17dbc7c44f1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  
  
  
  
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
    
    
  }


.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
      position: relative;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  
  
  
  
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
    
    
  }


.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
      position: relative;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  
  
  
  
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
    
    
  }


.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
      position: relative;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  
  
  
  
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
    
    
  }


.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
      position: relative;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  
  
  
  
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
    
    
  }


.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 .shogun-image-content {
  
    align-items: center;
  
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container {
      position: relative;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ae7f6caa-030e-4b4b-be75-d9a56bd67664 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c7829ea6-f795-4a90-8892-b2d26cfb11b7 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  
  
  
  
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
    
    
  }


.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
      position: relative;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  
  
  
  
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
    
    
  }


.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
      position: relative;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  
  
  
  
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
    
    
  }


.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
      position: relative;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  
  
  
  
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
    
    
  }


.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
      position: relative;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  
  
  
  
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
    
    
  }


.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container {
      position: relative;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5f60375-b3d6-4e4c-97ee-6b8e74b1dcf9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3a4a63e9-b712-4687-b7a2-e2b216f896f8 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-cae0fd40-aa9e-47ff-b005-38dcb1ebcdef {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-cae0fd40-aa9e-47ff-b005-38dcb1ebcdef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cae0fd40-aa9e-47ff-b005-38dcb1ebcdef"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-cae0fd40-aa9e-47ff-b005-38dcb1ebcdef"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-cae0fd40-aa9e-47ff-b005-38dcb1ebcdef"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f9bc3639-911b-4a95-a99e-0b4bf07787f7 {
  min-height: 50px;
}








#s-f9bc3639-911b-4a95-a99e-0b4bf07787f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f9bc3639-911b-4a95-a99e-0b4bf07787f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  
  
  
  
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
    
    
  }


.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
      position: relative;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  
  
  
  
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
    
    
  }


.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
      position: relative;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  
  
  
  
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
    
    
  }


.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
      position: relative;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  
  
  
  
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
    
    
  }


.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
      position: relative;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  
  
  
  
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
    
    
  }


.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container {
      position: relative;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-23d8fa10-80e1-4c82-a4ff-c60b7fc5d8b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2d9801fa-c087-4d92-bd30-10c95cc8fced {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-07191eab-7777-47af-a74a-bb6d01238331 {
  min-height: 50px;
}








#s-07191eab-7777-47af-a74a-bb6d01238331 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07191eab-7777-47af-a74a-bb6d01238331.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  
  
  
  
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
    
    
  }


.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-content {
  
    align-items: center;
  
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
      position: relative;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  
  
  
  
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
    
    
  }


.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-content {
  
    align-items: center;
  
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
      position: relative;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  
  
  
  
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
    
    
  }


.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-content {
  
    align-items: center;
  
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
      position: relative;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  
  
  
  
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
    
    
  }


.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-content {
  
    align-items: center;
  
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
      position: relative;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  
  
  
  
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
    
    
  }


.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 .shogun-image-content {
  
    align-items: center;
  
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container {
      position: relative;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77048360-2f9e-4d7e-b116-d5a9ccdf2841 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-80f53860-cfa6-4357-8796-9c6de4247eea {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-12f2b1c7-84b2-4f81-b660-2c45cfc38d65 {
  min-height: 50px;
}








#s-12f2b1c7-84b2-4f81-b660-2c45cfc38d65 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12f2b1c7-84b2-4f81-b660-2c45cfc38d65.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  
  
  
  
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
    
    
  }


.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
      position: relative;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  
  
  
  
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
    
    
  }


.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
      position: relative;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  
  
  
  
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
    
    
  }


.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
      position: relative;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  
  
  
  
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
    
    
  }


.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
      position: relative;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  
  
  
  
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
    
    
  }


.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container {
      position: relative;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef3fedc5-e59b-4da8-8bb0-1433e3838240 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3f2f617b-6064-464a-91c7-568e3ee79b90 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  
  
  
  
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
    
    
  }


.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-content {
  
    align-items: center;
  
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
      position: relative;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  
  
  
  
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
    
    
  }


.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-content {
  
    align-items: center;
  
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
      position: relative;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  
  
  
  
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
    
    
  }


.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-content {
  
    align-items: center;
  
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
      position: relative;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  
  
  
  
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
    
    
  }


.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-content {
  
    align-items: center;
  
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
      position: relative;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  
  
  
  
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
    
    
  }


.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a .shogun-image-content {
  
    align-items: center;
  
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container {
      position: relative;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a52d84d0-ceb4-4240-bf6f-332fab1eb12a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-975cf758-0b0b-4a35-aa56-b460d284ccca {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-22904010-04e2-48b7-ac27-14179ef7e951 {
  min-height: 50px;
}








#s-22904010-04e2-48b7-ac27-14179ef7e951 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22904010-04e2-48b7-ac27-14179ef7e951.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  
  
  
  
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
    
    
  }


.s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-content {
  
    align-items: center;
  
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07454f88-5934-4d21-aa06-c9e5554eb83f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
      position: relative;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  
  
  
  
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
    
    
  }


.s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-content {
  
    align-items: center;
  
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07454f88-5934-4d21-aa06-c9e5554eb83f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
      position: relative;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  
  
  
  
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
    
    
  }


.s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-content {
  
    align-items: center;
  
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07454f88-5934-4d21-aa06-c9e5554eb83f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
      position: relative;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  
  
  
  
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
    
    
  }


.s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-content {
  
    align-items: center;
  
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07454f88-5934-4d21-aa06-c9e5554eb83f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
      position: relative;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  
  
  
  
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07454f88-5934-4d21-aa06-c9e5554eb83f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
    
    
  }


.s-07454f88-5934-4d21-aa06-c9e5554eb83f .shogun-image-content {
  
    align-items: center;
  
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07454f88-5934-4d21-aa06-c9e5554eb83f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container {
      position: relative;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07454f88-5934-4d21-aa06-c9e5554eb83f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-19dd2aef-98ad-4a88-9769-9e7d64ada26f {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-51fe46c6-689f-4b41-b359-9edd55b11fa7 {
  min-height: 50px;
}








#s-51fe46c6-689f-4b41-b359-9edd55b11fa7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-51fe46c6-689f-4b41-b359-9edd55b11fa7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  
  
  
  
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
    
    
  }


.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-content {
  
    align-items: center;
  
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
      position: relative;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  
  
  
  
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
    
    
  }


.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-content {
  
    align-items: center;
  
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
      position: relative;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  
  
  
  
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
    
    
  }


.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-content {
  
    align-items: center;
  
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
      position: relative;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  
  
  
  
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
    
    
  }


.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-content {
  
    align-items: center;
  
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
      position: relative;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  
  
  
  
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
    
    
  }


.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba .shogun-image-content {
  
    align-items: center;
  
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container {
      position: relative;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b00f45f5-e38b-4676-bcd5-4cf1437dfeba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a58176b7-8b33-4b12-b4b2-1e071bec26a8 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-9c377c31-2560-49b6-85f0-6bcd9ee94e1d {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-9c377c31-2560-49b6-85f0-6bcd9ee94e1d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9c377c31-2560-49b6-85f0-6bcd9ee94e1d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-9c377c31-2560-49b6-85f0-6bcd9ee94e1d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c377c31-2560-49b6-85f0-6bcd9ee94e1d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  
  
  
  
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
    
    
  }


.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-content {
  
    align-items: center;
  
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
      position: relative;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  
  
  
  
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
    
    
  }


.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-content {
  
    align-items: center;
  
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
      position: relative;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  
  
  
  
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
    
    
  }


.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-content {
  
    align-items: center;
  
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
      position: relative;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  
  
  
  
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
    
    
  }


.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-content {
  
    align-items: center;
  
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
      position: relative;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  
  
  
  
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
    
    
  }


.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 .shogun-image-content {
  
    align-items: center;
  
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container {
      position: relative;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-58cd9e44-46d0-4f6e-9ea0-8f3882887e73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-74dd7612-0128-40dd-964d-e582896fb9ba {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-52a03057-3411-419f-a574-4e0baf8ef67d {
  
  
  
  
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
    
    
  }


.s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-content {
  
    align-items: center;
  
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-52a03057-3411-419f-a574-4e0baf8ef67d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
      position: relative;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-52a03057-3411-419f-a574-4e0baf8ef67d {
  
  
  
  
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
    
    
  }


.s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-content {
  
    align-items: center;
  
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-52a03057-3411-419f-a574-4e0baf8ef67d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
      position: relative;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-52a03057-3411-419f-a574-4e0baf8ef67d {
  
  
  
  
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
    
    
  }


.s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-content {
  
    align-items: center;
  
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-52a03057-3411-419f-a574-4e0baf8ef67d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
      position: relative;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-52a03057-3411-419f-a574-4e0baf8ef67d {
  
  
  
  
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
    
    
  }


.s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-content {
  
    align-items: center;
  
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-52a03057-3411-419f-a574-4e0baf8ef67d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
      position: relative;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-52a03057-3411-419f-a574-4e0baf8ef67d {
  
  
  
  
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-52a03057-3411-419f-a574-4e0baf8ef67d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
    
    
  }


.s-52a03057-3411-419f-a574-4e0baf8ef67d .shogun-image-content {
  
    align-items: center;
  
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-52a03057-3411-419f-a574-4e0baf8ef67d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container {
      position: relative;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-52a03057-3411-419f-a574-4e0baf8ef67d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3a932526-d962-4434-a51f-a5a2b24e5b85 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-ff2e1d2e-6b1e-4c28-a946-4d428658e566 {
  min-height: 50px;
}








#s-ff2e1d2e-6b1e-4c28-a946-4d428658e566 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff2e1d2e-6b1e-4c28-a946-4d428658e566.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  
  
  
  
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
    
    
  }


.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
      position: relative;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  
  
  
  
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
    
    
  }


.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
      position: relative;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  
  
  
  
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
    
    
  }


.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
      position: relative;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  
  
  
  
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
    
    
  }


.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
      position: relative;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  
  
  
  
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
    
    
  }


.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac .shogun-image-content {
  
    align-items: center;
  
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container {
      position: relative;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bfd0ed2-384c-460b-9800-1f1c89da2bac img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e7724cfa-2255-4c14-ae29-9fdb8ddbaba6 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  
  
  
  
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
    
    
  }


.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
      position: relative;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  
  
  
  
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
    
    
  }


.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
      position: relative;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  
  
  
  
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
    
    
  }


.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
      position: relative;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  
  
  
  
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
    
    
  }


.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
      position: relative;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  
  
  
  
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
    
    
  }


.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container {
      position: relative;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eec9c014-fbfa-4538-a5a3-1aea3aa67a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c0c8977f-bbe0-4c9b-bb35-c2cdcf2c3f7e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  
  
  
  
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
    
    
  }


.s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc448e5f-0223-4c17-8a65-a593b998e842 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
      position: relative;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  
  
  
  
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
    
    
  }


.s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc448e5f-0223-4c17-8a65-a593b998e842 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
      position: relative;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  
  
  
  
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
    
    
  }


.s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc448e5f-0223-4c17-8a65-a593b998e842 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
      position: relative;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  
  
  
  
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
    
    
  }


.s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc448e5f-0223-4c17-8a65-a593b998e842 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
      position: relative;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  
  
  
  
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc448e5f-0223-4c17-8a65-a593b998e842 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
    
    
  }


.s-bc448e5f-0223-4c17-8a65-a593b998e842 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc448e5f-0223-4c17-8a65-a593b998e842 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container {
      position: relative;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc448e5f-0223-4c17-8a65-a593b998e842 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e5cdca51-c5b3-4b4e-be25-a8bf66bef484 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-47e9d4a0-8a1c-40f2-a5a9-5bb10424fd6b {
  min-height: 50px;
}








#s-47e9d4a0-8a1c-40f2-a5a9-5bb10424fd6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47e9d4a0-8a1c-40f2-a5a9-5bb10424fd6b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  
  
  
  
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
    
    
  }


.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
      position: relative;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  
  
  
  
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
    
    
  }


.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
      position: relative;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  
  
  
  
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
    
    
  }


.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
      position: relative;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  
  
  
  
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
    
    
  }


.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
      position: relative;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  
  
  
  
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
    
    
  }


.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container {
      position: relative;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bc1f969b-e776-466a-82c1-e95a0d0d12a8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7aae4fe2-8aec-41bd-8871-61f2ff4f803c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-0edc25be-552f-4c6a-9c89-89e224fb0a1c {
  margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
background-color: rgba(255, 255, 255, 1);
}








#s-0edc25be-552f-4c6a-9c89-89e224fb0a1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0edc25be-552f-4c6a-9c89-89e224fb0a1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 3px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 {
  display: none;
}
#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151, #wrap-s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 {
  display: none;
}
#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151, #wrap-s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 {
  display: none;
}
#s-7e4ecca7-278d-4a1e-a173-c64fb5e34151, #wrap-s-7e4ecca7-278d-4a1e-a173-c64fb5e34151 { display: none !important; }}
#s-b70c94a5-0461-4d24-9e3f-4ef5879aaf79 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 5px;
text-align: center;
}

#s-b70c94a5-0461-4d24-9e3f-4ef5879aaf79 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
margin-top: 0px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 18%;
padding-bottom: 0px;
padding-right: 18%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: none;
}
@media (min-width: 1200px){#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad {
  
}
}@media (max-width: 767px){#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad {
  display: none;
}
#s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad, #wrap-s-be5dc92c-17e2-4219-85ef-1eb7b7f7afad { display: none !important; }}
#s-91f523c0-f512-48bc-9101-119e6b89e8f8 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: none;
}

#slider-v3-s-91f523c0-f512-48bc-9101-119e6b89e8f8 {
  --swiper-pagination-color: rgba(0, 0, 0, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 1) !important;

  
}

#slider-v3-s-91f523c0-f512-48bc-9101-119e6b89e8f8 > .swiper-button-prev,
#slider-v3-s-91f523c0-f512-48bc-9101-119e6b89e8f8 > .swiper-button-next {
  
}

& > .swiper-button-prev {
  
}

& > .swiper-button-next {
  }


#slider-v3-s-91f523c0-f512-48bc-9101-119e6b89e8f8 > .swiper-button-next svg,
#slider-v3-s-91f523c0-f512-48bc-9101-119e6b89e8f8 > .swiper-button-prev svg {
  fill: rgba(0, 0, 0, 1) !important;
}

#s-e001f00a-5b82-4080-8b2a-e3af50b3115a {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-e001f00a-5b82-4080-8b2a-e3af50b3115a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e001f00a-5b82-4080-8b2a-e3af50b3115a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-e001f00a-5b82-4080-8b2a-e3af50b3115a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-e001f00a-5b82-4080-8b2a-e3af50b3115a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-6e1093c7-74a3-4f17-ba5f-1f110d477da5 {
  min-height: 50px;
}








#s-6e1093c7-74a3-4f17-ba5f-1f110d477da5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e1093c7-74a3-4f17-ba5f-1f110d477da5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  
  
  
  
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
    
    
  }


.s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3abca614-678c-4641-9c07-93b312c6f2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
      position: relative;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  
  
  
  
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
    
    
  }


.s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3abca614-678c-4641-9c07-93b312c6f2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
      position: relative;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  
  
  
  
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
    
    
  }


.s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3abca614-678c-4641-9c07-93b312c6f2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
      position: relative;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  
  
  
  
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
    
    
  }


.s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3abca614-678c-4641-9c07-93b312c6f2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
      position: relative;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  
  
  
  
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3abca614-678c-4641-9c07-93b312c6f2a1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
    
    
  }


.s-3abca614-678c-4641-9c07-93b312c6f2a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3abca614-678c-4641-9c07-93b312c6f2a1 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container {
      position: relative;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3abca614-678c-4641-9c07-93b312c6f2a1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3bcfbfb6-6963-42bd-a00f-07eae3266ce9 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-479034db-ec7e-419d-b8c4-089d620ce0af {
  
  
  
  
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
    
    
  }


.s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-content {
  
    align-items: center;
  
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-479034db-ec7e-419d-b8c4-089d620ce0af {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
      position: relative;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-479034db-ec7e-419d-b8c4-089d620ce0af {
  
  
  
  
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
    
    
  }


.s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-content {
  
    align-items: center;
  
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-479034db-ec7e-419d-b8c4-089d620ce0af {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
      position: relative;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-479034db-ec7e-419d-b8c4-089d620ce0af {
  
  
  
  
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
    
    
  }


.s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-content {
  
    align-items: center;
  
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-479034db-ec7e-419d-b8c4-089d620ce0af {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
      position: relative;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-479034db-ec7e-419d-b8c4-089d620ce0af {
  
  
  
  
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
    
    
  }


.s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-content {
  
    align-items: center;
  
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-479034db-ec7e-419d-b8c4-089d620ce0af {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
      position: relative;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-479034db-ec7e-419d-b8c4-089d620ce0af {
  
  
  
  
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-479034db-ec7e-419d-b8c4-089d620ce0af .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
    
    
  }


.s-479034db-ec7e-419d-b8c4-089d620ce0af .shogun-image-content {
  
    align-items: center;
  
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shg-align-container {
  display: flex;
  justify-content: center
}

.s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-479034db-ec7e-419d-b8c4-089d620ce0af {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container {
      position: relative;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-479034db-ec7e-419d-b8c4-089d620ce0af img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2901c71c-9813-47b4-8103-3b6c82e275a2 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-1397eca7-c067-4c03-b69a-31a213fdb7c3 {
  min-height: 50px;
}








#s-1397eca7-c067-4c03-b69a-31a213fdb7c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1397eca7-c067-4c03-b69a-31a213fdb7c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  
  
  
  
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
    
    
  }


.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-content {
  
    align-items: center;
  
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
      position: relative;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  
  
  
  
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
    
    
  }


.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-content {
  
    align-items: center;
  
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
      position: relative;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  
  
  
  
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
    
    
  }


.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-content {
  
    align-items: center;
  
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
      position: relative;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  
  
  
  
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
    
    
  }


.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-content {
  
    align-items: center;
  
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
      position: relative;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  
  
  
  
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
    
    
  }


.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 .shogun-image-content {
  
    align-items: center;
  
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container {
      position: relative;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-32f8077f-2f61-4e3e-bee6-95dbd4fc0d79 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-27f75b25-3143-429d-afd1-25bb43b61eb3 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  
  
  
  
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
    
    
  }


.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
      position: relative;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  
  
  
  
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
    
    
  }


.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
      position: relative;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  
  
  
  
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
    
    
  }


.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
      position: relative;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  
  
  
  
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
    
    
  }


.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
      position: relative;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  
  
  
  
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
    
    
  }


.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 .shogun-image-content {
  
    align-items: center;
  
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container {
      position: relative;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0bafa414-0f03-4c86-8fe2-07e8a4eefac0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e7cbf631-4ba2-4eab-ba84-81b43e46d68e {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  
  
  
  
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
    
    
  }


.s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-content {
  
    align-items: center;
  
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3496e055-b76e-40f4-837f-69a7e1122d0c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
      position: relative;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  
  
  
  
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
    
    
  }


.s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-content {
  
    align-items: center;
  
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3496e055-b76e-40f4-837f-69a7e1122d0c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
      position: relative;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  
  
  
  
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
    
    
  }


.s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-content {
  
    align-items: center;
  
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3496e055-b76e-40f4-837f-69a7e1122d0c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
      position: relative;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  
  
  
  
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
    
    
  }


.s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-content {
  
    align-items: center;
  
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3496e055-b76e-40f4-837f-69a7e1122d0c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
      position: relative;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  
  
  
  
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3496e055-b76e-40f4-837f-69a7e1122d0c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
    
    
  }


.s-3496e055-b76e-40f4-837f-69a7e1122d0c .shogun-image-content {
  
    align-items: center;
  
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3496e055-b76e-40f4-837f-69a7e1122d0c {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container {
      position: relative;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3496e055-b76e-40f4-837f-69a7e1122d0c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-31641b1a-baa2-4d7d-99a6-842279b0c029 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-3984646b-f065-4e16-a894-1200ea4667bc {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-3984646b-f065-4e16-a894-1200ea4667bc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3984646b-f065-4e16-a894-1200ea4667bc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-3984646b-f065-4e16-a894-1200ea4667bc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-3984646b-f065-4e16-a894-1200ea4667bc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-d0500abd-b385-4dc4-bcaf-75ae0d43ce76 {
  min-height: 50px;
}








#s-d0500abd-b385-4dc4-bcaf-75ae0d43ce76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d0500abd-b385-4dc4-bcaf-75ae0d43ce76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  
  
  
  
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
    
    
  }


.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-content {
  
    align-items: center;
  
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
      position: relative;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  
  
  
  
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
    
    
  }


.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-content {
  
    align-items: center;
  
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
      position: relative;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  
  
  
  
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
    
    
  }


.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-content {
  
    align-items: center;
  
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
      position: relative;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  
  
  
  
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
    
    
  }


.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-content {
  
    align-items: center;
  
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
      position: relative;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  
  
  
  
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
    
    
  }


.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 .shogun-image-content {
  
    align-items: center;
  
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shg-align-container {
  display: flex;
  justify-content: center
}

.s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container {
      position: relative;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-30fb2bbd-6373-4c04-8e54-9fbe84d0e332 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5fe87a3e-f993-41b5-be1c-cd6ce491e2a7 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-db6582b1-ef0d-4858-bdcc-c4f6012ccccf {
  min-height: 50px;
}








#s-db6582b1-ef0d-4858-bdcc-c4f6012ccccf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db6582b1-ef0d-4858-bdcc-c4f6012ccccf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  
  
  
  
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
    
    
  }


.s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-content {
  
    align-items: center;
  
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
      position: relative;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  
  
  
  
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
    
    
  }


.s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-content {
  
    align-items: center;
  
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
      position: relative;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  
  
  
  
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
    
    
  }


.s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-content {
  
    align-items: center;
  
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
      position: relative;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  
  
  
  
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
    
    
  }


.s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-content {
  
    align-items: center;
  
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
      position: relative;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  
  
  
  
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
    
    
  }


.s-5fbc0919-2444-4b87-b7da-a6c0432c012f .shogun-image-content {
  
    align-items: center;
  
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container {
      position: relative;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fbc0919-2444-4b87-b7da-a6c0432c012f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-32f7aa5e-e100-4338-91c4-7d9d4c7d0017 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-1063afd3-587d-4add-aeae-5343d741a033 {
  min-height: 50px;
}








#s-1063afd3-587d-4add-aeae-5343d741a033 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1063afd3-587d-4add-aeae-5343d741a033.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  
  
  
  
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
    
    
  }


.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-content {
  
    align-items: center;
  
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
      position: relative;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  
  
  
  
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
    
    
  }


.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-content {
  
    align-items: center;
  
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
      position: relative;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  
  
  
  
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
    
    
  }


.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-content {
  
    align-items: center;
  
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
      position: relative;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  
  
  
  
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
    
    
  }


.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-content {
  
    align-items: center;
  
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
      position: relative;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  
  
  
  
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
    
    
  }


.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e .shogun-image-content {
  
    align-items: center;
  
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container {
      position: relative;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ceec76b1-b9f8-490b-a36d-8bb428a6014e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f57ce61b-f981-4e03-a68d-464a158acc64 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-120c3fd5-d66c-493d-8fee-87b9e7374df9 {
  min-height: 50px;
}








#s-120c3fd5-d66c-493d-8fee-87b9e7374df9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-120c3fd5-d66c-493d-8fee-87b9e7374df9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-752106b3-e8d1-467a-8136-7c0624b48801 {
  
  
  
  
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
    
    
  }


.s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-content {
  
    align-items: center;
  
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-752106b3-e8d1-467a-8136-7c0624b48801 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
      position: relative;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-752106b3-e8d1-467a-8136-7c0624b48801 {
  
  
  
  
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
    
    
  }


.s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-content {
  
    align-items: center;
  
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-752106b3-e8d1-467a-8136-7c0624b48801 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
      position: relative;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-752106b3-e8d1-467a-8136-7c0624b48801 {
  
  
  
  
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
    
    
  }


.s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-content {
  
    align-items: center;
  
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-752106b3-e8d1-467a-8136-7c0624b48801 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
      position: relative;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-752106b3-e8d1-467a-8136-7c0624b48801 {
  
  
  
  
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
    
    
  }


.s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-content {
  
    align-items: center;
  
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-752106b3-e8d1-467a-8136-7c0624b48801 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
      position: relative;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-752106b3-e8d1-467a-8136-7c0624b48801 {
  
  
  
  
}

#s-752106b3-e8d1-467a-8136-7c0624b48801 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-752106b3-e8d1-467a-8136-7c0624b48801 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
    
    
  }


.s-752106b3-e8d1-467a-8136-7c0624b48801 .shogun-image-content {
  
    align-items: center;
  
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shg-align-container {
  display: flex;
  justify-content: center
}

.s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-752106b3-e8d1-467a-8136-7c0624b48801 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container {
      position: relative;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-752106b3-e8d1-467a-8136-7c0624b48801 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-14985f84-519e-4d06-a3db-40a4c3e95669 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-18c77ac8-4ca7-44a0-8fae-09ff97550115 {
  min-height: 50px;
}








#s-18c77ac8-4ca7-44a0-8fae-09ff97550115 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-18c77ac8-4ca7-44a0-8fae-09ff97550115.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  max-width: 52px;
aspect-ratio: 105/244;
text-align: center;
}



.shg-image-margin-container-s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  
  
  
  
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
    
    
  }


.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-content {
  
    align-items: center;
  
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
      position: relative;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  
  
  
  
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
    
    
  }


.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-content {
  
    align-items: center;
  
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
      position: relative;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  
  
  
  
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
    
    
  }


.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-content {
  
    align-items: center;
  
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
      position: relative;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  
  
  
  
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
    
    
  }


.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-content {
  
    align-items: center;
  
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
      position: relative;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  
  
  
  
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      aspect-ratio: 105/244;
      width: 100%;
      height: 100%;
    }

    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-link {
      aspect-ratio: 105/244;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
    
    
  }


.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 .shogun-image-content {
  
    align-items: center;
  
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 {
      --shg-aspect-ratio: calc(105/244); 
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container {
      position: relative;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-39c7ae52-2b01-4bb8-b983-8eecf73b7805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6fdc8607-a628-4230-a11d-6bff830205a3 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-bf2b02a7-da40-426c-9a92-94464d826ffb {
  min-height: 50px;
}








#s-bf2b02a7-da40-426c-9a92-94464d826ffb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf2b02a7-da40-426c-9a92-94464d826ffb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-169e7e9d-458d-4629-a025-94550d0c10ec {
  
  
  
  
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
    
    
  }


.s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-content {
  
    align-items: center;
  
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-169e7e9d-458d-4629-a025-94550d0c10ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
      position: relative;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-169e7e9d-458d-4629-a025-94550d0c10ec {
  
  
  
  
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
    
    
  }


.s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-content {
  
    align-items: center;
  
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-169e7e9d-458d-4629-a025-94550d0c10ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
      position: relative;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-169e7e9d-458d-4629-a025-94550d0c10ec {
  
  
  
  
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
    
    
  }


.s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-content {
  
    align-items: center;
  
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-169e7e9d-458d-4629-a025-94550d0c10ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
      position: relative;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-169e7e9d-458d-4629-a025-94550d0c10ec {
  
  
  
  
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
    
    
  }


.s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-content {
  
    align-items: center;
  
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-169e7e9d-458d-4629-a025-94550d0c10ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
      position: relative;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-169e7e9d-458d-4629-a025-94550d0c10ec {
  
  
  
  
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-169e7e9d-458d-4629-a025-94550d0c10ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
    
    
  }


.s-169e7e9d-458d-4629-a025-94550d0c10ec .shogun-image-content {
  
    align-items: center;
  
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-169e7e9d-458d-4629-a025-94550d0c10ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container {
      position: relative;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-169e7e9d-458d-4629-a025-94550d0c10ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fc7527e6-035c-445c-a63c-c15cb5ba8309 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-44373571-9651-4c46-b03f-4520696d53bd {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-44373571-9651-4c46-b03f-4520696d53bd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-44373571-9651-4c46-b03f-4520696d53bd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-44373571-9651-4c46-b03f-4520696d53bd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-44373571-9651-4c46-b03f-4520696d53bd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-f7eefc1c-47c6-4955-a460-1b77c39e7ca9 {
  min-height: 45px;
}








#s-f7eefc1c-47c6-4955-a460-1b77c39e7ca9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f7eefc1c-47c6-4955-a460-1b77c39e7ca9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  
  
  
  
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
    
    
  }


.s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-content {
  
    align-items: center;
  
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
      position: relative;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  
  
  
  
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
    
    
  }


.s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-content {
  
    align-items: center;
  
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
      position: relative;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  
  
  
  
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
    
    
  }


.s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-content {
  
    align-items: center;
  
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
      position: relative;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  
  
  
  
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
    
    
  }


.s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-content {
  
    align-items: center;
  
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
      position: relative;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  
  
  
  
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
    
    
  }


.s-22b83f1b-2d46-4f98-905f-709dbd8a4574 .shogun-image-content {
  
    align-items: center;
  
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container {
      position: relative;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22b83f1b-2d46-4f98-905f-709dbd8a4574 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-314b6300-5328-43bf-8305-1ba833d58f65 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-ca3d544c-f55c-43bc-a9d0-cf5335c24a0e {
  min-height: 45px;
}








#s-ca3d544c-f55c-43bc-a9d0-cf5335c24a0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ca3d544c-f55c-43bc-a9d0-cf5335c24a0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  
  
  
  
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
    
    
  }


.s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
      position: relative;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  
  
  
  
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
    
    
  }


.s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
      position: relative;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  
  
  
  
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
    
    
  }


.s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
      position: relative;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  
  
  
  
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
    
    
  }


.s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
      position: relative;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  
  
  
  
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
    
    
  }


.s-78af33bc-9417-46b8-afb8-e66c7364d0e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container {
      position: relative;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-78af33bc-9417-46b8-afb8-e66c7364d0e2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b01c61f4-d963-458a-bad5-741f56bbb673 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-1a16d36b-db52-4a28-92fe-6c84592e21b6 {
  min-height: 45px;
}








#s-1a16d36b-db52-4a28-92fe-6c84592e21b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1a16d36b-db52-4a28-92fe-6c84592e21b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-3004ba44-b5e4-413f-9486-68556f4122ec {
  
  
  
  
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
    
    
  }


.s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-content {
  
    align-items: center;
  
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3004ba44-b5e4-413f-9486-68556f4122ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
      position: relative;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3004ba44-b5e4-413f-9486-68556f4122ec {
  
  
  
  
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
    
    
  }


.s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-content {
  
    align-items: center;
  
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3004ba44-b5e4-413f-9486-68556f4122ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
      position: relative;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3004ba44-b5e4-413f-9486-68556f4122ec {
  
  
  
  
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
    
    
  }


.s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-content {
  
    align-items: center;
  
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3004ba44-b5e4-413f-9486-68556f4122ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
      position: relative;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3004ba44-b5e4-413f-9486-68556f4122ec {
  
  
  
  
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
    
    
  }


.s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-content {
  
    align-items: center;
  
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3004ba44-b5e4-413f-9486-68556f4122ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
      position: relative;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3004ba44-b5e4-413f-9486-68556f4122ec {
  
  
  
  
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3004ba44-b5e4-413f-9486-68556f4122ec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
    
    
  }


.s-3004ba44-b5e4-413f-9486-68556f4122ec .shogun-image-content {
  
    align-items: center;
  
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3004ba44-b5e4-413f-9486-68556f4122ec {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container {
      position: relative;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3004ba44-b5e4-413f-9486-68556f4122ec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8d900de5-abfd-4399-947c-2524c2f23c69 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  
  
  
  
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
    
    
  }


.s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
      position: relative;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  
  
  
  
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
    
    
  }


.s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
      position: relative;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  
  
  
  
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
    
    
  }


.s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
      position: relative;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  
  
  
  
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
    
    
  }


.s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
      position: relative;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  
  
  
  
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
    
    
  }


.s-619ac8fd-9ef1-497a-84c1-ab21912974a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container {
      position: relative;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-619ac8fd-9ef1-497a-84c1-ab21912974a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2079b0ae-b2c3-4b5c-944f-f139343990ce {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  max-width: 52px;
aspect-ratio: 65/150;
text-align: center;
}



.shg-image-margin-container-s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  
  
  
  
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
    
    
  }


.s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-content {
  
    align-items: center;
  
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
      position: relative;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  
  
  
  
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
    
    
  }


.s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-content {
  
    align-items: center;
  
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
      position: relative;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  
  
  
  
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
    
    
  }


.s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-content {
  
    align-items: center;
  
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
      position: relative;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  
  
  
  
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
    
    
  }


.s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-content {
  
    align-items: center;
  
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
      position: relative;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  
  
  
  
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      aspect-ratio: 65/150;
      width: 100%;
      height: 100%;
    }

    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-link {
      aspect-ratio: 65/150;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
    
    
  }


.s-59cf1853-2ab6-4476-a870-8099b5c9c955 .shogun-image-content {
  
    align-items: center;
  
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 {
      --shg-aspect-ratio: calc(65/150); 
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container {
      position: relative;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-59cf1853-2ab6-4476-a870-8099b5c9c955 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-754c7b86-5699-457f-b7ee-badbe03e69f5 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-53a568e4-931d-4c96-94aa-dcc40d5b5e75 {
  min-height: 45px;
}








#s-53a568e4-931d-4c96-94aa-dcc40d5b5e75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-53a568e4-931d-4c96-94aa-dcc40d5b5e75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-2e96774d-4503-4132-ba3d-3feb00858376 {
  
  
  
  
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
    
    
  }


.s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e96774d-4503-4132-ba3d-3feb00858376 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
      position: relative;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2e96774d-4503-4132-ba3d-3feb00858376 {
  
  
  
  
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
    
    
  }


.s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e96774d-4503-4132-ba3d-3feb00858376 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
      position: relative;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2e96774d-4503-4132-ba3d-3feb00858376 {
  
  
  
  
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
    
    
  }


.s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e96774d-4503-4132-ba3d-3feb00858376 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
      position: relative;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2e96774d-4503-4132-ba3d-3feb00858376 {
  
  
  
  
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
    
    
  }


.s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e96774d-4503-4132-ba3d-3feb00858376 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
      position: relative;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2e96774d-4503-4132-ba3d-3feb00858376 {
  
  
  
  
}

#s-2e96774d-4503-4132-ba3d-3feb00858376 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2e96774d-4503-4132-ba3d-3feb00858376 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
    
    
  }


.s-2e96774d-4503-4132-ba3d-3feb00858376 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e96774d-4503-4132-ba3d-3feb00858376 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container {
      position: relative;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e96774d-4503-4132-ba3d-3feb00858376 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-39d8d86a-01a1-4fb8-ad27-54025955954c {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
}
@media (min-width: 1200px){#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a {
  display: none;
}
#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a, #wrap-s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a {
  display: none;
}
#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a, #wrap-s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a { display: none !important; }}@media (max-width: 767px){#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a {
  display: none;
}
#s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a, #wrap-s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a { display: none !important; }}
@media (min-width: 0px) {
[id="s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-19a4f320-9eac-4f6b-91a6-a1d03d5d1d6a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-984deba1-e036-43bb-9651-7a94d5f3721f {
  min-height: 50px;
}








#s-984deba1-e036-43bb-9651-7a94d5f3721f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-984deba1-e036-43bb-9651-7a94d5f3721f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  
  
  
  
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
    
    
  }


.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
      position: relative;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  
  
  
  
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
    
    
  }


.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
      position: relative;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  
  
  
  
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
    
    
  }


.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
      position: relative;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  
  
  
  
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
    
    
  }


.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
      position: relative;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  
  
  
  
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
    
    
  }


.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container {
      position: relative;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d85b1236-7554-4e79-890a-db9a7bbb1f6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f86780aa-76ec-41af-807d-79cf046e0f88 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-fe2e0e84-3a46-498a-a1ef-24503c3669ea {
  min-height: 50px;
}








#s-fe2e0e84-3a46-498a-a1ef-24503c3669ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe2e0e84-3a46-498a-a1ef-24503c3669ea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  
  
  
  
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
    
    
  }


.s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
      position: relative;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  
  
  
  
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
    
    
  }


.s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
      position: relative;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  
  
  
  
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
    
    
  }


.s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
      position: relative;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  
  
  
  
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
    
    
  }


.s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
      position: relative;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  
  
  
  
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
    
    
  }


.s-2540686b-fba4-4315-8bc1-9589cb3803d7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container {
      position: relative;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2540686b-fba4-4315-8bc1-9589cb3803d7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e43fd84d-86f2-4700-952f-c4763116cdd1 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-3e03df4a-8066-4e9f-8426-b28562b35785 {
  min-height: 50px;
}








#s-3e03df4a-8066-4e9f-8426-b28562b35785 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3e03df4a-8066-4e9f-8426-b28562b35785.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  
  
  
  
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
    
    
  }


.s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc458c-d203-4a2f-b2ac-e555af88937e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
      position: relative;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  
  
  
  
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
    
    
  }


.s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc458c-d203-4a2f-b2ac-e555af88937e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
      position: relative;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  
  
  
  
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
    
    
  }


.s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc458c-d203-4a2f-b2ac-e555af88937e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
      position: relative;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  
  
  
  
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
    
    
  }


.s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc458c-d203-4a2f-b2ac-e555af88937e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
      position: relative;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  
  
  
  
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc458c-d203-4a2f-b2ac-e555af88937e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
    
    
  }


.s-68bc458c-d203-4a2f-b2ac-e555af88937e .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc458c-d203-4a2f-b2ac-e555af88937e {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container {
      position: relative;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc458c-d203-4a2f-b2ac-e555af88937e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-26d6ab70-e5eb-4f96-b04b-df81d56692ef {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-938899e8-f167-4be0-96a2-36543b4611fd {
  
  
  
  
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
    
    
  }


.s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-content {
  
    align-items: center;
  
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-938899e8-f167-4be0-96a2-36543b4611fd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
      position: relative;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-938899e8-f167-4be0-96a2-36543b4611fd {
  
  
  
  
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
    
    
  }


.s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-content {
  
    align-items: center;
  
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-938899e8-f167-4be0-96a2-36543b4611fd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
      position: relative;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-938899e8-f167-4be0-96a2-36543b4611fd {
  
  
  
  
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
    
    
  }


.s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-content {
  
    align-items: center;
  
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-938899e8-f167-4be0-96a2-36543b4611fd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
      position: relative;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-938899e8-f167-4be0-96a2-36543b4611fd {
  
  
  
  
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
    
    
  }


.s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-content {
  
    align-items: center;
  
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-938899e8-f167-4be0-96a2-36543b4611fd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
      position: relative;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-938899e8-f167-4be0-96a2-36543b4611fd {
  
  
  
  
}

#s-938899e8-f167-4be0-96a2-36543b4611fd {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-938899e8-f167-4be0-96a2-36543b4611fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
    
    
  }


.s-938899e8-f167-4be0-96a2-36543b4611fd .shogun-image-content {
  
    align-items: center;
  
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-938899e8-f167-4be0-96a2-36543b4611fd {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container {
      position: relative;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-938899e8-f167-4be0-96a2-36543b4611fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a060b003-d366-48bf-b8e0-56336ed42164 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  
  
  
  
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
    
    
  }


.s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-content {
  
    align-items: center;
  
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
      position: relative;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  
  
  
  
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
    
    
  }


.s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-content {
  
    align-items: center;
  
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
      position: relative;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  
  
  
  
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
    
    
  }


.s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-content {
  
    align-items: center;
  
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
      position: relative;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  
  
  
  
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
    
    
  }


.s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-content {
  
    align-items: center;
  
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
      position: relative;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  
  
  
  
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
    
    
  }


.s-13e12f3b-1a55-4445-87a5-d0a556959e26 .shogun-image-content {
  
    align-items: center;
  
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container {
      position: relative;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13e12f3b-1a55-4445-87a5-d0a556959e26 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fc5a98fb-4120-4f42-821f-d49b71b61ec2 {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-fdf78e4e-72d7-4608-870a-4a7967ef48b3 {
  min-height: 50px;
}








#s-fdf78e4e-72d7-4608-870a-4a7967ef48b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fdf78e4e-72d7-4608-870a-4a7967ef48b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  max-width: 52px;
aspect-ratio: 129/300;
text-align: center;
}



.shg-image-margin-container-s-e31698e6-7974-49a6-a64d-66913e343beb {
  
  
  
  
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
    
    
  }


.s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-content {
  
    align-items: center;
  
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e31698e6-7974-49a6-a64d-66913e343beb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
      position: relative;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e31698e6-7974-49a6-a64d-66913e343beb {
  
  
  
  
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
    
    
  }


.s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-content {
  
    align-items: center;
  
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e31698e6-7974-49a6-a64d-66913e343beb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
      position: relative;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e31698e6-7974-49a6-a64d-66913e343beb {
  
  
  
  
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
    
    
  }


.s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-content {
  
    align-items: center;
  
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e31698e6-7974-49a6-a64d-66913e343beb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
      position: relative;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e31698e6-7974-49a6-a64d-66913e343beb {
  
  
  
  
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
    
    
  }


.s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-content {
  
    align-items: center;
  
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e31698e6-7974-49a6-a64d-66913e343beb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
      position: relative;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-e31698e6-7974-49a6-a64d-66913e343beb {
  
  
  
  
}

#s-e31698e6-7974-49a6-a64d-66913e343beb {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      aspect-ratio: 129/300;
      width: 100%;
      height: 100%;
    }

    #s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-link {
      aspect-ratio: 129/300;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e31698e6-7974-49a6-a64d-66913e343beb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
    
    
  }


.s-e31698e6-7974-49a6-a64d-66913e343beb .shogun-image-content {
  
    align-items: center;
  
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e31698e6-7974-49a6-a64d-66913e343beb {
      --shg-aspect-ratio: calc(129/300); 
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container {
      position: relative;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e31698e6-7974-49a6-a64d-66913e343beb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1cb0b1c2-dedd-4ef3-9c8c-64e2f57154cc {
  margin-top: 4px;
padding-top: 2px;
padding-bottom: 2px;
}

#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  background-repeat: no-repeat;
margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 250px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  display: none;
}
#s-9a2531e5-55cc-49d5-9086-8b431b043637, #wrap-s-9a2531e5-55cc-49d5-9086-8b431b043637 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  display: none;
}
#s-9a2531e5-55cc-49d5-9086-8b431b043637, #wrap-s-9a2531e5-55cc-49d5-9086-8b431b043637 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  display: none;
}
#s-9a2531e5-55cc-49d5-9086-8b431b043637, #wrap-s-9a2531e5-55cc-49d5-9086-8b431b043637 { display: none !important; }}@media (max-width: 767px){#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  display: none;
}
#s-9a2531e5-55cc-49d5-9086-8b431b043637, #wrap-s-9a2531e5-55cc-49d5-9086-8b431b043637 { display: none !important; }}
#s-9a2531e5-55cc-49d5-9086-8b431b043637 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjBkNWI3NTUtMjllMi00MDFhLWE0YWUtYTJiOGFiNmY2NWNiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjM5NTQ1NDU0NTQ1NDU0NTQiIHN0eWxlPSJzdG9wLWNvbG9yOiMwMDAwMDA7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuOTQwOTA5MDkwOTA5MDkwOSIgc3R5bGU9InN0b3AtY29sb3I6I2ZmZmZmZjtzdG9wLW9wYWNpdHk6MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjMjBkNWI3NTUtMjllMi00MDFhLWE0YWUtYTJiOGFiNmY2NWNiKSIvPjwvc3ZnPg==);
}








#s-9a2531e5-55cc-49d5-9086-8b431b043637 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9a2531e5-55cc-49d5-9086-8b431b043637.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;
}

#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-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
@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;
  }
}
